diff --git a/docs/data-sources/instance_servers.md b/docs/data-sources/instance_servers.md index 62caf5271c..e5cd2cd9cd 100644 --- a/docs/data-sources/instance_servers.md +++ b/docs/data-sources/instance_servers.md @@ -46,6 +46,9 @@ In addition to all above arguments, the following attributes are exported: - `tags` - The tags associated with the server. - `public_ip` - The public IP address of the server. - `private_ip` - The Scaleway internal IP address of the server. + - `private_ips` - The list of private IPv4 and IPv6 addresses associated with the server. + - `id` - The ID of the IP address resource. + - `address` - The private IP address. - `public_ips` - The list of public IPs of the server - `id` - The ID of the IP - `address` - The address of the IP diff --git a/internal/services/instance/servers_data_source.go b/internal/services/instance/servers_data_source.go index e0c9aa26c3..ab9ec569b5 100644 --- a/internal/services/instance/servers_data_source.go +++ b/internal/services/instance/servers_data_source.go @@ -5,12 +5,16 @@ import ( "fmt" "strconv" + "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + ipamAPI "github.com/scaleway/scaleway-sdk-go/api/ipam/v1" "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/ipam" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) @@ -65,6 +69,26 @@ func DataSourceServers() *schema.Resource { Computed: true, Type: schema.TypeString, }, + "private_ips": { + Type: schema.TypeList, + Computed: true, + Optional: true, + Description: "List of private IPv4 and IPv6 addresses associated with the resource", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the IPv4/v6 address resource", + }, + "address": { + Type: schema.TypeString, + Computed: true, + Description: "The private IPv4/v6 address", + }, + }, + }, + }, "state": { Computed: true, Type: schema.TypeString, @@ -227,6 +251,62 @@ func DataSourceInstanceServersRead(ctx context.Context, d *schema.ResourceData, rawServer["ipv6_prefix_length"] = prefixLength } + ph, err := newPrivateNICHandler(instanceAPI, server.ID, zone) + if err != nil { + return diag.FromErr(err) + } + + privateNICIDs := []string(nil) + for _, nic := range ph.privateNICsMap { + privateNICIDs = append(privateNICIDs, nic.ID) + } + + // Read server's private IPs if possible + allPrivateIPs := []map[string]any(nil) + resourceType := ipamAPI.ResourceTypeInstancePrivateNic + + region, err := zone.Region() + if err != nil { + return append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Unable to get server's private IPs", + Detail: err.Error(), + }) + } + + for _, nicID := range privateNICIDs { + opts := &ipam.GetResourcePrivateIPsOptions{ + ResourceType: &resourceType, + ResourceID: &nicID, + ProjectID: &server.Project, + } + + privateIPs, err := ipam.GetResourcePrivateIPs(ctx, m, region, opts) + + switch { + case err == nil: + allPrivateIPs = append(allPrivateIPs, privateIPs...) + case httperrors.Is403(err): + return append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Unauthorized to read server's private IPs, please check your IAM permissions", + Detail: err.Error(), + AttributePath: cty.GetAttrPath("private_ips"), + }) + default: + diags = append(diags, diag.Diagnostic{ + Severity: diag.Warning, + Summary: fmt.Sprintf("Unable to get private IPs for server %s (pnic_id: %s)", server.ID, nicID), + Detail: err.Error(), + AttributePath: cty.GetAttrPath("private_ips"), + }) + } + + if len(allPrivateIPs) > 0 { + rawServer["private_ips"] = allPrivateIPs + } + } + servers = append(servers, rawServer) } diff --git a/internal/services/instance/servers_data_source_test.go b/internal/services/instance/servers_data_source_test.go index f4ccdf558e..d02fb291ea 100644 --- a/internal/services/instance/servers_data_source_test.go +++ b/internal/services/instance/servers_data_source_test.go @@ -88,3 +88,120 @@ func TestAccDataSourceServers_Basic(t *testing.T) { }, }) } + +func TestAccDataSourceServers_PrivateIPs(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: instancechecks.IsServerDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_vpc_private_network" "pn01" { + name = "private_network_instance_servers" + } + + resource "scaleway_instance_server" "server1" { + name = "tf-server-datasource-private-ips-0" + image = "ubuntu_focal" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + }`, + }, + { + Config: ` + resource "scaleway_vpc_private_network" "pn01" { + name = "private_network_instance_servers" + } + + resource "scaleway_instance_server" "server1" { + name = "tf-server-datasource-private-ips-0" + image = "ubuntu_focal" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + } + + resource "scaleway_instance_server" "server2" { + name = "tf-server-datasource-private-ips-1" + image = "ubuntu_focal" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + }`, + }, + { + Config: ` + resource "scaleway_vpc_private_network" "pn01" { + name = "private_network_instance_servers" + } + + resource "scaleway_instance_server" "server1" { + name = "tf-server-datasource-private-ips-0" + image = "ubuntu_focal" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + } + + resource "scaleway_instance_server" "server2" { + name = "tf-server-datasource-private-ips-1" + image = "ubuntu_focal" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + + private_network { + pn_id = scaleway_vpc_private_network.pn01.id + } + } + + data "scaleway_instance_servers" "servers_by_name" { + name = "tf-server-datasource-private-ips" + } + + data "scaleway_instance_servers" "servers_by_tag" { + tags = ["data_scaleway_instance_servers", "terraform-test"] + } + + data "scaleway_instance_servers" "servers_by_name_other_zone" { + name = "tf-server-datasource-private-ips" + zone = "fr-par-2" + } + `, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_tag", "servers.0.private_ips.0.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_tag", "servers.0.private_ips.1.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_tag", "servers.1.private_ips.0.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_tag", "servers.1.private_ips.1.id"), + + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_name", "servers.0.private_ips.0.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_name", "servers.0.private_ips.1.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_name", "servers.1.private_ips.0.id"), + resource.TestCheckResourceAttrSet("data.scaleway_instance_servers.servers_by_name", "servers.1.private_ips.1.id"), + + resource.TestCheckNoResourceAttr("data.scaleway_instance_servers.servers_by_name_other_zone", "servers.0.id"), + ), + }, + }, + }) +} diff --git a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml index 17b30b1302..e62983b6b6 100644 --- a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 06 Aug 2025 09:52:54 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ecb1bc2-c909-4482-b2d0-b533e90abb92 + - 213a36a2-c55b-4740-a504-3bfdcfc6034f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 61.297138ms + duration: 279.804583ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 06 Aug 2025 09:52:54 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 976c4c6f-ee70-401c-96f1-b7decdd6af3a + - c716e7d9-deb4-437d-ae64-e84338ebfdfc X-Total-Count: - "75" status: 200 OK code: 200 - duration: 85.884118ms + duration: 65.058166ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 06 Aug 2025 09:52:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - decba278-eaf2-42f6-9dd9-59aa84bc9f71 + - 0eb416cd-1b69-4ea2-a10d-a882eb34b49c status: 200 OK code: 200 - duration: 116.665405ms + duration: 86.691208ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 06 Aug 2025 09:52:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6855fd97-62b0-4760-88b8-683bb90e6d36 + - ba22d817-fe89-41fd-b55f-a69d5d2e46e4 status: 201 Created code: 201 - duration: 909.440656ms + duration: 732.797625ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 676624f2-7a52-48a1-b2e6-9fa7e0d74139 + - 13edcfc1-a470-4045-837c-b4b128b52139 status: 200 OK code: 200 - duration: 145.327298ms + duration: 124.67925ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf3f5fd-d142-4c6d-8335-a2fd2cf8db1a + - 1a716cce-6c4d-41f9-8839-d0407f3be70a status: 200 OK code: 200 - duration: 202.401627ms + duration: 143.530334ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7139b581-27cb-4556-b24b-7e836f94ddb1 + - fc483c12-baa6-4705-9aa9-2e309907e2b4 status: 200 OK code: 200 - duration: 182.696942ms + duration: 132.660542ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d8d6cf2-596b-4b28-ae65-f31f3af7679c + - 5586de33-fa49-4c55-948a-36c1a1b7fa1d status: 404 Not Found code: 404 - duration: 64.679812ms + duration: 39.290917ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3ceb4c4-36a6-46ef-82d5-11c6dd802f3b + - c3e53896-789e-457f-81ca-c4dea234f698 status: 200 OK code: 200 - duration: 148.683432ms + duration: 61.89625ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56c7434e-bb53-418a-b606-17b58bceb332 + - 87061723-e79d-426c-b96b-8d53a242a30f status: 200 OK code: 200 - duration: 135.424617ms + duration: 64.571ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abd0462c-9629-459f-86ce-0d07f2fb0332 + - f6f39fbc-af79-4041-8243-704e0fc3aaa0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.628238ms + duration: 102.27725ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 06 Aug 2025 09:52:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5a25326-dabd-4cb1-bc4a-b53d69fa5802 + - 58e7f793-697b-4fd8-ac74-a88cbe5d382a status: 200 OK code: 200 - duration: 182.874706ms + duration: 137.186167ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' headers: Content-Length: - "143" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34847087-3974-43c6-bbab-c809f746d52f + - ee5271c8-af40-4baa-a5e6-e951c464b1b4 status: 404 Not Found code: 404 - duration: 53.617425ms + duration: 36.922833ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dd40ffd-405a-4a70-87be-8ecb6125b05f + - 4dc68c74-3ab3-4bb4-b838-42326e552a33 status: 200 OK code: 200 - duration: 136.381612ms + duration: 50.050291ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 274e3838-2e95-447f-ab3b-a4153fff7057 + - d3b33117-e284-4526-8376-d9911deff525 status: 200 OK code: 200 - duration: 129.251039ms + duration: 62.146375ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eb6b944-7f2e-47db-b508-54f7166e7010 + - 5c693e9f-28b8-4214-bd06-da738565a14e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 147.376442ms + duration: 53.930459ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4e7fb52-7968-43ee-b4bb-ece9f6fd4eb3 + - c5c13272-37a8-4929-bb01-bb945034416f status: 200 OK code: 200 - duration: 480.426727ms + duration: 128.769541ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d9a9337-8df0-44d4-930e-d7d0b1455882 + - ee4c9108-e6ce-4106-88e0-f90ed87c6251 status: 404 Not Found code: 404 - duration: 47.972308ms + duration: 32.660166ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0976480e-d3c9-4829-b7d8-e0b5cf4b5e3d + - 5c52ad7c-a19d-45cf-a0b7-af2faa591caa status: 200 OK code: 200 - duration: 93.341904ms + duration: 50.429666ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7bcf962-7e61-419a-81da-6e3b438221ab + - f9f28ff7-674c-4176-8c98-de0ce3d016f4 status: 200 OK code: 200 - duration: 149.614979ms + duration: 63.400375ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 06 Aug 2025 09:52:56 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e23685-d54e-482a-8415-4ce9fd69ba68 + - 0ca54c44-4d50-44f4-9f37-f0380a0deac0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 146.356789ms + duration: 72.492333ms - id: 21 request: proto: HTTP/1.1 @@ -1069,7 +1069,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1089,11 +1089,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 06 Aug 2025 09:52:57 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,12 +1101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 944a8070-ec93-4aba-baf7-93fa0c008fbb + - 2a351df4-d60f-4576-9e47-5f755576eb5a X-Total-Count: - "75" status: 200 OK code: 200 - duration: 51.132194ms + duration: 51.289333ms - id: 22 request: proto: HTTP/1.1 @@ -1122,7 +1122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1142,11 +1142,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 06 Aug 2025 09:52:57 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1154,12 +1154,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 886b45ec-87c9-4c6d-bce5-9cc308af8979 + - 0eed1b3e-9647-46d5-a901-024388af4e4f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 53.51406ms + duration: 57.791167ms - id: 23 request: proto: HTTP/1.1 @@ -1175,7 +1175,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -1184,20 +1184,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 06 Aug 2025 09:52:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1205,10 +1205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14dbc0a8-dcba-4481-84f5-0a073b586771 + - 06ef6c0d-1317-4b24-8c7a-dfc76156a496 status: 200 OK code: 200 - duration: 119.839328ms + duration: 71.663625ms - id: 24 request: proto: HTTP/1.1 @@ -1220,13 +1220,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1237,7 +1237,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1246,11 +1246,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1258,10 +1258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a598b195-aae1-4714-aeef-bd973d63447a + - 859dcd97-7724-4586-8c5e-d585d831d70f status: 201 Created code: 201 - duration: 898.972331ms + duration: 637.94425ms - id: 25 request: proto: HTTP/1.1 @@ -1277,8 +1277,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -1288,7 +1288,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1297,9 +1297,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1307,10 +1307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af80421-787f-4b88-a3a8-61810ba1d2ae + - 3d2b49c6-9ea5-43bc-b956-23bcf847caa2 status: 200 OK code: 200 - duration: 147.53591ms + duration: 119.486541ms - id: 26 request: proto: HTTP/1.1 @@ -1326,8 +1326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -1337,7 +1337,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1346,9 +1346,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5b898ba-bc5c-477f-baab-efad386e5248 + - 3457571c-f589-488b-9399-020d4ac4957b status: 200 OK code: 200 - duration: 179.914753ms + duration: 106.205292ms - id: 27 request: proto: HTTP/1.1 @@ -1375,8 +1375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -1386,7 +1386,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1395,9 +1395,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56100901-6415-4974-8559-772fbe9ec61d + - 69357bd1-93bb-46fb-8fb9-8ffff7083bbd status: 200 OK code: 200 - duration: 183.725711ms + duration: 124.285417ms - id: 28 request: proto: HTTP/1.1 @@ -1424,8 +1424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -1435,7 +1435,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' headers: Content-Length: - "143" @@ -1444,9 +1444,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a72e5b32-194b-4f16-8958-6a07d59753bf + - e1e7209e-05df-4e21-a211-bbe808318d13 status: 404 Not Found code: 404 - duration: 42.828351ms + duration: 33.313084ms - id: 29 request: proto: HTTP/1.1 @@ -1473,8 +1473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -1484,7 +1484,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:50.834819Z","id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:50.834819Z","id":"68604299-6c18-4b45-9a3e-8ee9e36f29d3","product_resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.834819Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1493,9 +1493,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ff672b9-514b-47c8-bdb0-41db0a220925 + - 51c4779c-f753-4643-959d-24fb20fb6f0f status: 200 OK code: 200 - duration: 82.171315ms + duration: 55.016083ms - id: 30 request: proto: HTTP/1.1 @@ -1522,8 +1522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data method: GET response: proto: HTTP/2.0 @@ -1542,9 +1542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,10 +1552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e73cbe-e938-4879-a948-0dc8b51faf2d + - a795eab4-1821-4875-89d0-f2b920138e1a status: 200 OK code: 200 - duration: 109.769463ms + duration: 54.752875ms - id: 31 request: proto: HTTP/1.1 @@ -1571,8 +1571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -1591,11 +1591,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,12 +1603,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f2c5280-66ca-4639-9675-101f0400bcd9 + - cf475156-d74b-40ee-9fdb-09fb5a17d4d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 150.899678ms + duration: 56.108167ms - id: 32 request: proto: HTTP/1.1 @@ -1624,8 +1624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -1635,7 +1635,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1644,9 +1644,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1654,10 +1654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 581fea17-11a4-4e71-961f-36e40d07f909 + - 7f9984a5-282e-4262-85ea-9e2b63f0650a status: 200 OK code: 200 - duration: 180.42488ms + duration: 136.329416ms - id: 33 request: proto: HTTP/1.1 @@ -1673,8 +1673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -1684,7 +1684,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -1693,9 +1693,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1703,10 +1703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 345c64e1-2dff-4d69-95bc-ff1daec4ec26 + - 6d9b3132-db78-468a-a297-4f71c08c38b4 status: 200 OK code: 200 - duration: 182.478612ms + duration: 152.167792ms - id: 34 request: proto: HTTP/1.1 @@ -1722,8 +1722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -1733,7 +1733,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' headers: Content-Length: - "143" @@ -1742,9 +1742,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1752,10 +1752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63e5921a-5cf1-46a1-b571-b75cfeeaa530 + - b38adc80-872c-4d5a-a036-34fc782e487a status: 404 Not Found code: 404 - duration: 37.759244ms + duration: 25.799417ms - id: 35 request: proto: HTTP/1.1 @@ -1771,8 +1771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -1782,7 +1782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' headers: Content-Length: - "143" @@ -1791,9 +1791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,10 +1801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08bf59e1-450f-4fe0-ad8d-81dbcbdc9019 + - 5dd3fc7d-b059-4496-ac58-9c178a49991c status: 404 Not Found code: 404 - duration: 39.294584ms + duration: 32.510792ms - id: 36 request: proto: HTTP/1.1 @@ -1820,8 +1820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -1831,7 +1831,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1840,9 +1840,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 325c11c1-81da-48f2-8e5f-99706a9482ab + - dad4e923-297a-4971-9528-13b889a129da status: 200 OK code: 200 - duration: 112.842536ms + duration: 52.754334ms - id: 37 request: proto: HTTP/1.1 @@ -1869,8 +1869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -1880,7 +1880,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:50.834819Z","id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:50.834819Z","id":"68604299-6c18-4b45-9a3e-8ee9e36f29d3","product_resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.834819Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1889,9 +1889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f81ba69e-958c-4aaa-a827-a9ed5add7cb2 + - 36edea2b-d30f-4831-9a14-cc6e4bbe8e43 status: 200 OK code: 200 - duration: 123.57805ms + duration: 44.529291ms - id: 38 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data method: GET response: proto: HTTP/2.0 @@ -1938,9 +1938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95863043-9b85-462a-9277-87356b75ab9a + - 8a635bb7-77a5-45fd-9a61-43ba29058882 status: 200 OK code: 200 - duration: 100.47412ms + duration: 67.684041ms - id: 39 request: proto: HTTP/1.1 @@ -1967,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data method: GET response: proto: HTTP/2.0 @@ -1987,9 +1987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56337aaf-d582-4429-ab69-c13b66c03f49 + - 7ec20249-1d9f-437d-a41e-222712dd4ff5 status: 200 OK code: 200 - duration: 144.452377ms + duration: 59.634167ms - id: 40 request: proto: HTTP/1.1 @@ -2016,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -2036,11 +2036,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,12 +2048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a02c312c-2225-4371-afee-8ad2d0a801ea + - cfa80a02-5659-4e69-aac4-bff2ac10ee15 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 160.226039ms + duration: 64.49525ms - id: 41 request: proto: HTTP/1.1 @@ -2069,8 +2069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -2089,11 +2089,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 06 Aug 2025 09:52:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,12 +2101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42cf1406-3169-4b53-a971-9b85d094184c + - 3079cedc-48c2-4fda-a924-3f7967a9e7fc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 106.124557ms + duration: 62.966542ms - id: 42 request: proto: HTTP/1.1 @@ -2122,8 +2122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2131,20 +2131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 15 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[]}' headers: Content-Length: - - "1775" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2152,10 +2154,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86a30907-576c-4210-b351-5d9b24d31be2 + - 0f9da544-62e7-4edb-88ed-02322b4fd2ae + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 166.441365ms + duration: 106.965958ms - id: 43 request: proto: HTTP/1.1 @@ -2171,8 +2175,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -2182,7 +2186,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -2191,9 +2195,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2201,10 +2205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9c60387-2155-40a3-94d6-e4b01b675082 + - c381b0c2-2d2c-47f8-b7e3-4479a82cec5f status: 200 OK code: 200 - duration: 177.323243ms + duration: 134.036375ms - id: 44 request: proto: HTTP/1.1 @@ -2220,8 +2224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2229,22 +2233,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 3543 uncompressed: false - body: '{"servers":[]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "15" + - "3543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2252,12 +2256,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 019a1df4-e64b-43ff-bf2c-32cbcb53e6e3 + - 3392ffc8-8400-4327-8d83-f19ac37a7765 X-Total-Count: - - "0" + - "2" status: 200 OK code: 200 - duration: 182.624074ms + duration: 138.576833ms - id: 45 request: proto: HTTP/1.1 @@ -2273,8 +2277,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -2282,20 +2286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1775 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2303,10 +2307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ad82635-47f6-4909-a9b4-4ae0b777e26d - status: 404 Not Found - code: 404 - duration: 56.742295ms + - a7f73ebe-a4fa-4dcd-a51f-3f7d6bda071a + status: 200 OK + code: 200 + duration: 137.353875ms - id: 46 request: proto: HTTP/1.1 @@ -2322,8 +2326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -2331,20 +2335,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3543 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2352,10 +2358,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67e94c03-8cf9-4056-ad6f-9f7469edb2a9 - status: 404 Not Found - code: 404 - duration: 55.983953ms + - 7e1154c8-5f9b-4ecd-ae97-fdfacb01ace0 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 147.606875ms - id: 47 request: proto: HTTP/1.1 @@ -2371,8 +2379,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -2380,22 +2388,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' headers: Content-Length: - - "3543" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT - Link: - - ; rel="last" + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2403,12 +2409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 148dc90f-9c20-4c4a-9ff5-0b5dcb74fa03 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 277.698288ms + - 41c794e0-938e-4ad2-a5f5-c09b8cb2bf20 + status: 404 Not Found + code: 404 + duration: 33.464084ms - id: 48 request: proto: HTTP/1.1 @@ -2424,8 +2428,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -2433,22 +2437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' headers: Content-Length: - - "3543" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT - Link: - - ; rel="last" + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2456,12 +2458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2dedcb2-d72e-424d-8b6a-c6d5e78d7244 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 294.920266ms + - 4f3c833d-8dfe-4807-8f5b-22ec50e4168f + status: 404 Not Found + code: 404 + duration: 38.704416ms - id: 49 request: proto: HTTP/1.1 @@ -2477,8 +2477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -2486,20 +2486,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2507,10 +2509,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2768b0e1-bafc-4acb-9f4c-0492c884c777 + - b2504f44-0ca6-432b-8032-4a4748c69c13 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 84.069475ms + duration: 59.697958ms - id: 50 request: proto: HTTP/1.1 @@ -2526,8 +2530,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -2535,20 +2539,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:50.834819Z","id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:50.834819Z","id":"68604299-6c18-4b45-9a3e-8ee9e36f29d3","product_resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.834819Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2556,10 +2562,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6e63a2-283d-4e2e-bae9-eb5eca9a5ccb + - 5671ea16-d333-4376-88f3-3e56dc1c1a79 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 77.838049ms + duration: 53.760833ms - id: 51 request: proto: HTTP/1.1 @@ -2575,8 +2583,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: GET response: proto: HTTP/2.0 @@ -2584,20 +2592,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2605,10 +2613,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d136d015-c2b6-4772-9415-84edc96b1725 + - ad7f92cb-925a-4ff2-9f02-7f3355ae4434 status: 200 OK code: 200 - duration: 96.42705ms + duration: 42.846792ms - id: 52 request: proto: HTTP/1.1 @@ -2624,8 +2632,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -2633,20 +2641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2654,10 +2662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5179336-26f1-4da2-bbb8-3fb05efcdcf5 + - f7a1f66f-3ab4-4e55-8f1a-d58f03b1508d status: 200 OK code: 200 - duration: 133.076643ms + duration: 44.784166ms - id: 53 request: proto: HTTP/1.1 @@ -2673,8 +2681,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -2693,11 +2701,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2705,12 +2713,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d5f4c0-f525-4993-9918-e5a7009b3bf9 + - 4a29b75e-0bbb-4f8c-a895-6351b60c7868 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.607254ms + duration: 57.370083ms - id: 54 request: proto: HTTP/1.1 @@ -2726,8 +2734,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -2746,11 +2754,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2758,12 +2766,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb995ef-f4b8-4ab1-9c06-2e9bc531360f + - 9b3be139-14a1-4b5e-bbd3-04ebb0473417 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 170.717485ms + duration: 61.412917ms - id: 55 request: proto: HTTP/1.1 @@ -2779,8 +2787,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data method: GET response: proto: HTTP/2.0 @@ -2788,22 +2796,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 17 uncompressed: false - body: '{"servers":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "15" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT - Link: - - ; rel="last" + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2811,12 +2817,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7578454e-6bc4-4590-83c0-556a011426ae - X-Total-Count: - - "0" + - f8b0d14a-a6a4-4d57-80e3-534d956250c5 status: 200 OK code: 200 - duration: 126.960933ms + duration: 54.355125ms - id: 56 request: proto: HTTP/1.1 @@ -2832,8 +2836,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data method: GET response: proto: HTTP/2.0 @@ -2841,22 +2845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 17 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "3543" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT - Link: - - ; rel="last" + - Wed, 06 Aug 2025 09:52:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2864,12 +2866,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5adccf0f-da3e-4418-be61-34b63202116e - X-Total-Count: - - "2" + - a1d13c52-2a43-4a47-8b96-0f950f7c190f status: 200 OK code: 200 - duration: 330.21621ms + duration: 54.849083ms - id: 57 request: proto: HTTP/1.1 @@ -2885,8 +2885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -2894,22 +2894,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 20 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "3543" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2917,12 +2917,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c41b2e3-dc90-436f-8db4-54689d4c3c98 + - b908f551-fc03-43e6-9483-30c6cfe6c77a X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 338.552514ms + duration: 60.359667ms - id: 58 request: proto: HTTP/1.1 @@ -2938,8 +2938,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -2947,22 +2947,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 20 uncompressed: false - body: '{"servers":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "15" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2970,12 +2970,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00df0bc4-2f52-4abc-8529-35cecd62e3d6 + - 00b674d5-785b-453c-96e9-64eb1017dfc5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 145.063463ms + duration: 69.022875ms - id: 59 request: proto: HTTP/1.1 @@ -2991,8 +2991,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3000,22 +3000,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 15 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[]}' headers: Content-Length: - - "3543" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3023,12 +3023,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a711d579-278c-496d-a655-ad08986e5e6e + - 0be5ae48-5b17-4b64-8d2e-ac7374057b5e X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 216.570849ms + duration: 84.948541ms - id: 60 request: proto: HTTP/1.1 @@ -3044,8 +3044,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3055,7 +3055,7 @@ interactions: trailer: {} content_length: 3543 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3543" @@ -3064,11 +3064,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3076,12 +3076,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8893af4-8db7-4789-bc41-3ce0b62e6b4c + - db7c9a95-cce3-4710-81c5-f3aa3c911c68 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 273.705679ms + duration: 142.867ms - id: 61 request: proto: HTTP/1.1 @@ -3097,8 +3097,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3106,20 +3106,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 3543 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "1775" + - "3543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3127,10 +3129,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f50df86-5128-4bff-8d3e-140326d0087e + - 022189d3-6c79-46a7-ab1e-80850d4ecbce + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 208.517255ms + duration: 143.567417ms - id: 62 request: proto: HTTP/1.1 @@ -3146,8 +3150,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3155,22 +3159,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 20 uncompressed: false - body: '{"servers":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "15" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3178,12 +3182,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2df28b3-c6cd-4227-94d7-509b8706ced5 + - e3b035b6-ece6-48d0-b044-afd012399938 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 211.864412ms + duration: 57.641708ms - id: 63 request: proto: HTTP/1.1 @@ -3199,8 +3203,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3208,22 +3212,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 20 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "3543" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3231,12 +3235,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c7d44d5-fda6-4ab2-afa0-6fa95333d6cc + - f85eec84-4ac8-43a2-873d-4c47e3812a8f X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 223.697243ms + duration: 68.535709ms - id: 64 request: proto: HTTP/1.1 @@ -3252,8 +3256,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -3261,20 +3265,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1775" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3282,10 +3288,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a427cff-abb8-4129-a364-884b2706541a + - 5e6eaa6c-2299-4a3d-8f0d-f3160f29dc85 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 242.605594ms + duration: 62.960833ms - id: 65 request: proto: HTTP/1.1 @@ -3301,8 +3309,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -3310,20 +3318,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:52:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3331,10 +3341,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c234d8f8-6ea0-44ab-a372-fb1f38eecc5d - status: 404 Not Found - code: 404 - duration: 48.018745ms + - 5905c4d6-a8e4-42a5-9002-7c109151ab53 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 56.3925ms - id: 66 request: proto: HTTP/1.1 @@ -3350,8 +3362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3359,20 +3371,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 15 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","type":"not_found"}' + body: '{"servers":[]}' headers: Content-Length: - - "143" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3380,10 +3394,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 806f8ee5-54a2-40ae-aef3-200b9d1d1a5a - status: 404 Not Found - code: 404 - duration: 69.017095ms + - 6c1ee474-4559-4731-b68c-3592388fc41c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.06575ms - id: 67 request: proto: HTTP/1.1 @@ -3399,8 +3415,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3410,7 +3426,7 @@ interactions: trailer: {} content_length: 3543 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3543" @@ -3419,11 +3435,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:53:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3431,12 +3447,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 006be999-13c5-48e5-ac5d-3b8be4399377 + - 726e8ed1-1ccd-4753-bf6f-bbace2976c90 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 316.002433ms + duration: 154.605125ms - id: 68 request: proto: HTTP/1.1 @@ -3452,8 +3468,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3461,20 +3477,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 3543 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:44.249454Z","id":"4bc43151-3dfb-44c4-b12a-7ba9fab99f3f","product_resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:44.249454Z","zone":"fr-par-1"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "701" + - "3543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3482,10 +3500,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d42cec8d-b8e3-4786-93e2-c1b39d7240e1 + - 42d1501f-382e-4c3e-a35e-f2726026cb3d + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 89.078358ms + duration: 169.405334ms - id: 69 request: proto: HTTP/1.1 @@ -3501,8 +3521,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3510,20 +3530,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:50.834819Z","id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:50.834819Z","id":"68604299-6c18-4b45-9a3e-8ee9e36f29d3","product_resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.834819Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3531,10 +3553,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df26963d-6d14-4fa1-ae74-f2f12f5ec0ad + - 57f893dd-ed9e-4709-aaf7-d6ac4b7816ea + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 80.873501ms + duration: 63.287167ms - id: 70 request: proto: HTTP/1.1 @@ -3550,8 +3574,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3559,20 +3583,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3580,10 +3606,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6613c15f-3fc5-4aaa-863c-8116c340fc47 + - b89cc29c-3bd1-4078-b86e-87f80d675476 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 139.667684ms + duration: 85.847292ms - id: 71 request: proto: HTTP/1.1 @@ -3599,8 +3627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -3608,20 +3636,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3629,10 +3659,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afc743c8-4c12-4aac-b35f-7062fe5b6382 + - 90653dd8-ca3a-456f-bfdf-61393554c992 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 158.085966ms + duration: 58.846125ms - id: 72 request: proto: HTTP/1.1 @@ -3648,8 +3680,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -3668,11 +3700,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3680,12 +3712,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba2978eb-5eeb-485c-85d5-72fa95c64451 + - bd08c1f6-47f8-4f74-87ab-bf9e36fb00b1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 108.449316ms + duration: 99.531ms - id: 73 request: proto: HTTP/1.1 @@ -3701,8 +3733,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3710,22 +3742,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 15 uncompressed: false - body: '{"private_nics":[]}' + body: '{"servers":[]}' headers: Content-Length: - - "20" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3733,12 +3765,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a0dec95-f5e2-43bb-8001-da9a7c477c2a + - 44b26742-6844-4d88-8657-764604626109 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 172.288331ms + duration: 78.712125ms - id: 74 request: proto: HTTP/1.1 @@ -3754,8 +3786,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -3763,7 +3795,823 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1775 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1775" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 13ed991d-e7bd-4908-9b2d-83a3ee033987 + status: 200 OK + code: 200 + duration: 128.604042ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3543 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "3543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5285051-14e3-4f65-83e4-96225fcd8866 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 158.364125ms + - id: 76 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3182dbb0-391f-4fc0-8024-10ff60e806f6 + status: 404 Not Found + code: 404 + duration: 29.105917ms + - id: 77 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3543 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "3543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cf28560-f1a6-43ec-b6ed-4253a76f0e42 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 167.822292ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1775 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1775" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2d056da-efa4-4022-986b-263455a3dc54 + status: 200 OK + code: 200 + duration: 196.325875ms + - id: 79 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e1acb1f-210e-4876-9c94-073afa238fe8 + status: 200 OK + code: 200 + duration: 42.775084ms + - id: 80 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6582856-84c2-4018-ad3d-2ca5602bf3af + status: 404 Not Found + code: 404 + duration: 25.326625ms + - id: 81 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d21ad3fb-80ee-48e4-a0f8-d026457ebf31 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 66.892625ms + - id: 82 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac3d8724-a375-40e2-91d8-4881fe98ec77 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 66.179583ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e32aadd2-99a4-4663-950d-defd983a182d + status: 200 OK + code: 200 + duration: 58.472334ms + - id: 84 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1fe10f01-8e10-4a45-a37e-8b4afaa303df + status: 200 OK + code: 200 + duration: 55.313375ms + - id: 85 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a485d7e7-9209-49ee-8748-e532546cbd15 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 61.614542ms + - id: 86 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e0e27c6-4925-4223-8820-8a7b7e7f2438 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 72.212375ms + - id: 87 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bfa48cf5-08d5-4c22-95fb-4582d6dae1ae + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 58.69675ms + - id: 88 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7ac82b0-fed1-4b2d-8bf2-0c14ba2bafff + status: 200 OK + code: 200 + duration: 64.151125ms + - id: 89 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:00 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c499769-cb1d-4e87-98ba-2d93b3f7dfa5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 61.221875ms + - id: 90 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 uncompressed: false body: '{"servers":[]}' headers: @@ -3774,11 +4622,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3786,13 +4634,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 789dcdfd-bde1-4cd9-8e78-81a4c3e92a58 + - 587605e1-68bd-431d-b09d-c20efdb60446 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 121.362815ms - - id: 75 + duration: 106.837917ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -3807,7 +4655,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: @@ -3818,7 +4666,7 @@ interactions: trailer: {} content_length: 3543 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3543" @@ -3827,11 +4675,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3839,13 +4687,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f93facf-3e39-4a72-b49f-c6fe087bf335 + - d41652c6-0f6a-4091-a13a-3dae3fe83318 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 237.37265ms - - id: 76 + duration: 137.065333ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -3860,7 +4708,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: @@ -3871,7 +4719,7 @@ interactions: trailer: {} content_length: 3543 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3543" @@ -3880,11 +4728,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3892,13 +4740,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 411edb8e-6ddf-42c6-9243-915fdf49e1ef + - a33eaa7b-190a-401c-8a62-a1a3ead3efe4 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 280.742697ms - - id: 77 + duration: 185.158334ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -3913,8 +4761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3922,20 +4770,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1775" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 06 Aug 2025 09:53:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3943,11 +4793,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ace04e91-dc19-4425-ad7c-f31c64daba2a + - 64c54719-7943-4d1e-aae0-dea434139eb7 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 191.239912ms - - id: 78 + duration: 76.625334ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -3962,8 +4814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3971,20 +4823,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1775" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 06 Aug 2025 09:53:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3992,11 +4846,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34babbb4-2145-461a-9530-b0ee604ef19b + - a70d29b5-9186-4add-81a4-aedf1cfba923 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 191.337115ms - - id: 79 + duration: 51.672875ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4011,8 +4867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics method: GET response: proto: HTTP/2.0 @@ -4020,20 +4876,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:44.039392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6b","maintenances":[],"modification_date":"2025-06-10T15:30:44.039392+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1775" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 06 Aug 2025 09:53:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4041,11 +4899,66 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da0c510f-a7df-4146-88de-efcc67fb0bd1 + - 75a21409-4747-45a9-b109-9d77e7c80b36 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 227.941934ms - - id: 80 + duration: 71.443959ms + - id: 96 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:01 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02d6aae5-d845-4499-bd5c-57c002dcba24 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 79.71675ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4060,8 +4973,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -4071,7 +4984,7 @@ interactions: trailer: {} content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:50.640066+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:6f","maintenances":[],"modification_date":"2025-06-10T15:30:50.640066+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1775" @@ -4080,9 +4993,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4090,11 +5003,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 969d296b-1fad-4738-8014-3631e9b6cb04 + - e488b10e-0aec-4848-840f-da7f6dfcab44 status: 200 OK code: 200 - duration: 276.509828ms - - id: 81 + duration: 101.228ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4109,27 +5022,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1775 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4137,11 +5052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528637a2-ba21-4520-874f-dfd7c68a333e - status: 204 No Content - code: 204 - duration: 252.135336ms - - id: 82 + - 18d7b8ef-5b56-493c-858a-ea359c40a5a0 + status: 200 OK + code: 200 + duration: 140.479333ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4156,8 +5071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -4165,20 +5080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1775 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4186,11 +5101,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 497a3021-bd97-4538-99f9-8f202b39cdfa - status: 404 Not Found - code: 404 - duration: 93.328539ms - - id: 83 + - 78feed3b-461f-48d9-b959-ca68acc1d6be + status: 200 OK + code: 200 + duration: 129.535584ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4205,8 +5120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -4214,20 +5129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1775 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4235,11 +5150,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a15b008-f429-4bf3-9e43-50a0e70a2c6c - status: 404 Not Found - code: 404 - duration: 34.946639ms - - id: 84 + - 1134b33a-0974-42a7-91d7-e300993e1b2b + status: 200 OK + code: 200 + duration: 102.498292ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4254,8 +5169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: DELETE response: proto: HTTP/2.0 @@ -4272,9 +5187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4282,11 +5197,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f096d26-356c-4526-863b-c5edd7801233 + - 6ca0d52a-ea15-4a07-8130-931d9213aea0 status: 204 No Content code: 204 - duration: 343.767725ms - - id: 85 + duration: 199.273666ms + - id: 102 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + 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, 06 Aug 2025 09:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5e77aa0-d32d-4682-b7c0-af71c8f94da4 + status: 204 No Content + code: 204 + duration: 208.221291ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4301,8 +5263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -4310,20 +5272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:44.249454Z","id":"f908fa26-9f1e-4766-aa2d-d23a6049e606","last_detached_at":"2025-06-10T15:31:00.174054Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:00.174054Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","type":"not_found"}' headers: Content-Length: - - "494" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4331,11 +5293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e296fbfc-2f9a-4cb2-af11-096fde104c59 - status: 200 OK - code: 200 - duration: 115.727436ms - - id: 86 + - 33748f24-7cd0-41f7-970f-6bd58d884b34 + status: 404 Not Found + code: 404 + duration: 83.017875ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -4350,8 +5312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -4361,7 +5323,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' headers: Content-Length: - "143" @@ -4370,9 +5332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4380,11 +5342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2719f51e-7d2e-48bb-8767-06fbd2a7323a + - bed9485b-39df-4c8f-b90d-2b71dc3756af status: 404 Not Found code: 404 - duration: 129.826287ms - - id: 87 + duration: 39.13125ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -4399,8 +5361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -4410,7 +5372,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","type":"not_found"}' headers: Content-Length: - "143" @@ -4419,9 +5381,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4429,11 +5391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13a225b7-777d-4d36-b026-4c8611aff1e1 + - df9b8830-c332-4991-be65-a3c3f9235361 status: 404 Not Found code: 404 - duration: 44.275635ms - - id: 88 + duration: 156.701709ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -4448,8 +5410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: GET response: proto: HTTP/2.0 @@ -4459,7 +5421,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:50.834819Z","id":"d9745a8b-4bb4-4aab-9951-1634d454e1eb","last_detached_at":"2025-06-10T15:31:00.286883Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:00.286883Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":"2025-08-06T09:53:02.048614Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:53:02.048614Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -4468,9 +5430,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4478,11 +5440,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2898c90c-375e-44a8-b3d1-0246bd661275 + - 4e67f630-f3fb-4eef-89e0-b151adb4f510 status: 200 OK code: 200 - duration: 86.042986ms - - id: 89 + duration: 57.966ms + - id: 107 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b98fd744-0442-4576-a4b5-4fbfa6d5370b + status: 404 Not Found + code: 404 + duration: 31.615916ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -4497,8 +5508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f908fa26-9f1e-4766-aa2d-d23a6049e606 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 method: DELETE response: proto: HTTP/2.0 @@ -4515,9 +5526,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4525,11 +5536,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e58ee91c-fa10-458d-90f3-8a9435746f42 + - bfc6d311-16a7-4e69-b6f2-00c97d118593 status: 204 No Content code: 204 - duration: 168.134591ms - - id: 90 + duration: 75.8465ms + - id: 109 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":"2025-08-06T09:53:02.062998Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:53:02.062998Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:53:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ca3ad51-ffb9-42ef-9245-58a1148ab25d + status: 200 OK + code: 200 + duration: 52.996208ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -4544,8 +5604,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9745a8b-4bb4-4aab-9951-1634d454e1eb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a method: DELETE response: proto: HTTP/2.0 @@ -4562,9 +5622,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4572,11 +5632,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740d00d9-2026-4dcb-b875-db534584327f + - 9b67f09c-d492-4666-bf80-ef68c9d6b7f7 status: 204 No Content code: 204 - duration: 156.922193ms - - id: 91 + duration: 78.462708ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -4591,8 +5651,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d8fe1c6-a699-4bf8-88b5-12300c095180 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 method: GET response: proto: HTTP/2.0 @@ -4602,7 +5662,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5d8fe1c6-a699-4bf8-88b5-12300c095180","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","type":"not_found"}' headers: Content-Length: - "143" @@ -4611,9 +5671,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4621,11 +5681,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e611a4-8d6c-4fae-921c-41cf9df7775a + - 62e237f8-cd4f-40cd-9e85-211478889197 status: 404 Not Found code: 404 - duration: 112.743731ms - - id: 92 + duration: 80.70175ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -4640,8 +5700,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5ba47249-21ea-495f-aaf4-1b80fc1b7f3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 method: GET response: proto: HTTP/2.0 @@ -4651,7 +5711,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5ba47249-21ea-495f-aaf4-1b80fc1b7f3c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","type":"not_found"}' headers: Content-Length: - "143" @@ -4660,9 +5720,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 06 Aug 2025 09:53:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4670,7 +5730,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 230cb2a3-3cc8-47f1-bbdc-8658a63f2890 + - 8722077d-d431-4320-adb8-28d487db207c status: 404 Not Found code: 404 - duration: 80.426171ms + duration: 88.194916ms diff --git a/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml new file mode 100644 index 0000000000..089a37096d --- /dev/null +++ b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml @@ -0,0 +1,8488 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 162 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"private_network_instance_servers","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; 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: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 5ae6167e-db1f-4072-9391-9c4dd40900d0 + status: 200 OK + code: 200 + duration: 892.454333ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 69a166ca-3e12-43c5-a699-c8a8723af50f + status: 200 OK + code: 200 + duration: 27.682209ms + - id: 2 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 39208 + uncompressed: false + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + headers: + Content-Length: + - "39208" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:05 GMT + Link: + - ; rel="next",; rel="last" + 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: + - b1cb6c7f-3053-4577-b96e-01bbef0367ad + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 45.187792ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 19730 + uncompressed: false + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:05 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + 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: + - 8970bbd5-c34c-4e26-8856-c0dcd7b4acb4 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 41.205792ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1260 + uncompressed: false + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "1260" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d562b102-69ab-4555-bf06-ef770b03cbd0 + status: 200 OK + code: 200 + duration: 82.269917ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 314 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + 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: + - 9f271c4b-ed24-4695-849b-3920f4f3a45d + status: 201 Created + code: 201 + duration: 683.650958ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09: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: + - 94f72925-4c68-4a9a-8751-0450332a5fbd + status: 200 OK + code: 200 + duration: 141.35925ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - b1864b78-4324-46d1-95c2-60fc5305a9e4 + status: 200 OK + code: 200 + duration: 267.949167ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 979a806e-52c2-4e66-ad73-4f27600824ea + status: 200 OK + code: 200 + duration: 64.523125ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 69b7eed4-0954-4adf-897c-ca5b4c342457 + status: 200 OK + code: 200 + duration: 110.190792ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 1b1a9cb5-1b2d-4817-981e-7c1a7f74607a + status: 201 Created + code: 201 + duration: 456.392667ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d9e1745b-1e00-4910-b205-8b4af3d0d3b4 + status: 200 OK + code: 200 + duration: 52.265167ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - a59c55c4-3b1d-4e83-b23b-1f61771254aa + status: 200 OK + code: 200 + duration: 70.023ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 3121fba3-026c-48db-8945-54f301f528a0 + status: 200 OK + code: 200 + duration: 149.34475ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - b513d503-3896-489e-99ed-1cc0e9291be0 + status: 404 Not Found + code: 404 + duration: 30.344459ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 04ba739f-d2e5-4d3e-9ba2-dd466197b169 + status: 200 OK + code: 200 + duration: 55.050625ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 53523228-47ab-403f-8d19-ae5928fd4763 + status: 200 OK + code: 200 + duration: 56.165583ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:08 GMT + Link: + - ; rel="last" + 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: + - be9f94c4-972f-4946-bea8-cd1b132fb3f0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 63.216083ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 75fc66fd-a644-4941-9b24-612010859daf + status: 200 OK + code: 200 + duration: 49.274167ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 203d3a74-a9e4-4ae0-96e8-cfed6da869f1 + status: 200 OK + code: 200 + duration: 27.924333ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 1c777494-3b8f-4aa2-8fec-ad411d260217 + status: 200 OK + code: 200 + duration: 149.344541ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d64d9f91-af73-491f-a0ec-a61b73cd6e0e + status: 404 Not Found + code: 404 + duration: 36.529125ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 3a127b17-a58d-42df-8071-8f64f7be2a31 + status: 200 OK + code: 200 + duration: 43.375583ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - dad49412-82ef-488b-a994-efee3a50cdfb + status: 200 OK + code: 200 + duration: 64.484209ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:08 GMT + Link: + - ; rel="last" + 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: + - a34b79cf-6557-44bc-a307-6b2277dff971 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 64.817458ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 95784ef0-77c5-4ead-b5d2-ceea69526c8a + status: 200 OK + code: 200 + duration: 36.5105ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 5d8e31de-c1ac-45c5-baf3-87bbda893f50 + status: 200 OK + code: 200 + duration: 33.928292ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 2c8f1a59-9d73-450c-86ce-47f2aaf7f357 + status: 200 OK + code: 200 + duration: 125.240375ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 71bef4ad-b95b-4859-9e6f-d2f222d286b6 + status: 404 Not Found + code: 404 + duration: 25.6625ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - cb651703-9edb-47bc-8aaa-abdc2482fd1f + status: 200 OK + code: 200 + duration: 44.221834ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 1cf7f5df-1e1b-4478-b54c-09281d90071f + status: 200 OK + code: 200 + duration: 54.406375ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:09 GMT + Link: + - ; rel="last" + 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: + - bec0d1b5-f63c-48d2-aabe-001638b12611 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 67.309125ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 98d5e703-cf28-4e8f-ae86-7f3f611e3c5c + status: 200 OK + code: 200 + duration: 33.33975ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 39208 + uncompressed: false + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + headers: + Content-Length: + - "39208" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:09 GMT + Link: + - ; rel="next",; rel="last" + 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: + - 870b3c41-2f9e-4012-ac24-6f4a3be31b11 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 43.198917ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 19730 + uncompressed: false + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:09 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + 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: + - c5b37c2a-0cf9-4ba9-a3d9-9d3cdd129e4a + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 46.517166ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1260 + uncompressed: false + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "1260" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 860284d3-96b7-484d-a558-507cff54f3ba + status: 200 OK + code: 200 + duration: 102.183958ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 314 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:10 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + 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: + - ccda0714-26eb-49fd-902f-6e808a8bf095 + status: 201 Created + code: 201 + duration: 708.374625ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:10 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: + - 762fc5ff-1dca-485b-a5e6-af3b6e4b6cf9 + status: 200 OK + code: 200 + duration: 154.434959ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:10 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: + - e7c15547-c22f-4d8e-93ae-33b594512a72 + status: 200 OK + code: 200 + duration: 107.602125ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:10 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: + - 41b9d845-8bfc-4467-9a90-18cb034747e0 + status: 200 OK + code: 200 + duration: 45.272584ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 444cbf83-da1c-48b9-b0bd-735d1e2c47e5 + status: 200 OK + code: 200 + duration: 151.245708ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - f0e908b6-583c-4f4a-a054-995d659c5d4b + status: 201 Created + code: 201 + duration: 540.628209ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 52ae051e-242b-4b40-990a-b8a8121e0d27 + status: 200 OK + code: 200 + duration: 63.295083ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - a65b4605-b227-4ec5-8ba4-5585b73f2667 + status: 200 OK + code: 200 + duration: 71.599375ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - ed86137b-ed2c-40e6-a1b5-3e2d356eff73 + status: 200 OK + code: 200 + duration: 127.557084ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - f2b87b69-365e-4048-8cbe-6bcc3c880fac + status: 404 Not Found + code: 404 + duration: 66.673125ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 3f26078c-6fb8-4604-af31-fd3348ade083 + status: 200 OK + code: 200 + duration: 50.519416ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 4cd15994-73a8-4bfc-9b1e-76740810b41d + status: 200 OK + code: 200 + duration: 80.909084ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 GMT + Link: + - ; rel="last" + 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: + - cb2e721a-0ad4-4181-b690-4cbcffe1fa08 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 98.231917ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 2a6f426b-babb-48d0-b5d1-3e312b6f1a44 + status: 200 OK + code: 200 + duration: 33.556ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 66714651-5508-4db4-88ba-e440417201d2 + status: 200 OK + code: 200 + duration: 34.165042ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - d0e9e04e-5a95-4c08-8b8d-bbf210d0827f + status: 200 OK + code: 200 + duration: 130.409917ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 45ef1d3c-b3bf-49be-b3a2-2a3c396c4eff + status: 200 OK + code: 200 + duration: 130.374959ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 0bf06af6-e1ae-414d-b178-384391a1d259 + status: 404 Not Found + code: 404 + duration: 41.49025ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - c4f577b4-6bc3-4711-a64b-0d9a87e0e222 + status: 404 Not Found + code: 404 + duration: 55.232542ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 6937b104-5608-47b7-866c-1ce0874c79f2 + status: 200 OK + code: 200 + duration: 44.359167ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - fcf057ce-d378-4f15-af38-4d22ed8e7d9a + status: 200 OK + code: 200 + duration: 42.564541ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - c2d3919e-a7f4-4677-8eae-659656c7a78f + status: 200 OK + code: 200 + duration: 70.693458ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - dee33f0f-c35e-4491-beb6-39b49ee0f3f8 + status: 200 OK + code: 200 + duration: 69.005917ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 GMT + Link: + - ; rel="last" + 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: + - c1c12f7d-9fe3-4d15-8727-4de5fd0e0929 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 68.280166ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 GMT + Link: + - ; rel="last" + 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: + - d84c3a66-76cf-41f7-be18-6c985b76c2c3 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 67.577ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - bcb9b659-6fea-4635-9987-a42cef1c0874 + status: 200 OK + code: 200 + duration: 33.428791ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:12 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: + - 1aa35570-2af1-4888-835a-bfc097ec3fa4 + status: 200 OK + code: 200 + duration: 25.7515ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 4b996e43-331e-460a-a51c-bedb5653ad6a + status: 200 OK + code: 200 + duration: 29.298625ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 54452529-6f6f-4d28-8aa1-c10f8cfbe886 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 78.264917ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - c6a48093-c578-4272-b36f-ba779e3d2368 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 148.216666ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - f07298af-1027-4768-aba4-1bfb5dbd0fe5 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 164.339083ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - c2ea62bd-2ec0-43db-abd0-55c418710d5b + status: 200 OK + code: 200 + duration: 147.375666ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 588a7a00-280a-4d31-9646-ddc6355e5fd7 + status: 200 OK + code: 200 + duration: 164.827625ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - f5d73ad0-cd8a-43ff-bbf6-663aaf95646b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 59.806166ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - ff6c5c25-b262-4128-a04e-17d53eda350b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 64.446708ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 1bfb8e55-87df-4559-b7f3-cdad702a4e3b + status: 404 Not Found + code: 404 + duration: 31.263458ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 94f824cf-b334-44f1-b1d7-9a0a3fa61f2f + status: 200 OK + code: 200 + duration: 26.38475ms + - 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 92a65a9e-37d8-4440-b471-b39f30b30ba0 + status: 404 Not Found + code: 404 + duration: 64.328875ms + - id: 74 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 7cf62265-bd97-4d2c-8dce-56dc3395b3a7 + status: 200 OK + code: 200 + duration: 27.706917ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 33aafa14-169e-41bb-9655-7a93d26b8f58 + status: 200 OK + code: 200 + duration: 50.716958ms + - id: 76 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 02e3ef63-8484-4a98-8089-dc8738925bdf + status: 200 OK + code: 200 + duration: 37.746625ms + - id: 77 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - fbf38237-ef57-494e-a406-fbcedea5cca5 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 78.206334ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 8f5a0972-80e8-4c5e-95cb-4a040dffc5ac + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 64.291042ms + - id: 79 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - cd22eae2-8ad9-42dc-8dd0-351cb9e76c81 + status: 200 OK + code: 200 + duration: 62.116834ms + - id: 80 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 8e4877a4-b629-454b-9e71-ee49652d2d9e + status: 200 OK + code: 200 + duration: 31.895ms + - id: 81 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - efb5f668-305a-4099-a99a-461dcc58eb8c + status: 200 OK + code: 200 + duration: 73.392208ms + - id: 82 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - e30a9b78-fc79-44a0-a57f-babdebb74512 + status: 200 OK + code: 200 + duration: 43.142333ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 4410dba8-efbb-4b1e-9fe0-e8d0ee8a69d9 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 60.858709ms + - id: 84 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 04a09953-c439-4277-a5b0-124a44ec1dc0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 56.426291ms + - id: 85 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 86cd525a-9b75-45c4-8446-5afb839032b6 + status: 200 OK + code: 200 + duration: 31.401709ms + - id: 86 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 644489e0-183a-4e7d-b8b8-4bada693c70c + status: 200 OK + code: 200 + duration: 28.598875ms + - id: 87 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 0d6ce22d-b8c7-41d7-8e36-1358d07b762c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.847875ms + - id: 88 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - e5a00416-b215-4d00-9e15-744baaa18e9f + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 132.468083ms + - id: 89 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 6134d164-cf2d-436d-90ea-e87669bd6ed3 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 188.328417ms + - id: 90 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 299b3fae-5fd0-4266-93e9-d10bec8dac86 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 64.227375ms + - id: 91 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 7755cc93-5547-45f4-8697-fab71d17ff2b + status: 200 OK + code: 200 + duration: 31.774708ms + - id: 92 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 43e7d66b-c149-4d7a-8e39-e6478b5e24be + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 59.52475ms + - id: 93 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - 05d1b9ea-bcbe-4c2f-b8f3-be41c62d113c + status: 200 OK + code: 200 + duration: 32.090292ms + - id: 94 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - 2c8727da-8b4b-41ba-9176-d7ef90bb93bf + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 57.756416ms + - id: 95 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 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: + - e7f0c16a-8d95-4703-a3ba-32404f7f0a7f + status: 200 OK + code: 200 + duration: 32.94075ms + - id: 96 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:13 GMT + Link: + - ; rel="last" + 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: + - f124a320-d479-4f8e-8e6d-da427e80c089 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 53.611459ms + - id: 97 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 6c3025dc-aa97-49dc-995a-0a56a3235689 + status: 200 OK + code: 200 + duration: 42.839709ms + - id: 98 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - bdf80cd1-aa74-4f9c-a8ec-efbc630f9bf0 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 115.0265ms + - id: 99 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 46e56fe1-b44a-4a6c-8914-eece61346bd6 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 143.485875ms + - id: 100 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - a4c899c3-28c2-4110-ac63-7fc67956d466 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 167.248792ms + - id: 101 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 3397a927-8a37-423f-b2ea-c6af2d831e13 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 71.468791ms + - id: 102 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 858b1539-a868-4b62-8e31-003a2c3e831a + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 58.970917ms + - id: 103 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 271116a1-ff6d-41ca-88e6-3147c5c5d377 + status: 200 OK + code: 200 + duration: 27.925958ms + - id: 104 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 588ef6e3-436a-47cd-a0ef-7a02e12a9bd0 + status: 200 OK + code: 200 + duration: 27.632958ms + - id: 105 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - fada8efd-2802-4169-9c99-193ba6b2239b + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 66.866792ms + - id: 106 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 02e6c6d3-ffc1-4715-b267-590074b5b648 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 87.25025ms + - id: 107 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - b6c9b9f3-9645-4e22-b22c-edfc7661a50e + status: 200 OK + code: 200 + duration: 29.38725ms + - id: 108 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 3aaa36f7-8b73-465c-8a41-e704fb3c76fc + status: 200 OK + code: 200 + duration: 30.324416ms + - id: 109 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1102 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + headers: + Content-Length: + - "1102" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 5442d01d-f67a-4d5b-99bd-f3fd6871ca6c + status: 200 OK + code: 200 + duration: 28.557083ms + - id: 110 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 65618a38-9026-4162-a8b2-c84ee7e8b5cd + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 102.998959ms + - id: 111 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 32bfeb58-7c9d-4b92-af97-52261181e230 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 149.831375ms + - id: 112 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 0d07aa60-7863-430d-bfc5-a9727e5f3530 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 152.938042ms + - id: 113 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - e2793ba8-f522-4b48-b225-73889d91674b + status: 200 OK + code: 200 + duration: 135.136417ms + - id: 114 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 1b762cbf-1c07-407a-9606-54357ca568e9 + status: 404 Not Found + code: 404 + duration: 30.869125ms + - id: 115 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 2983bb0c-896d-44da-b7f2-4bfe3cd21aad + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 55.278667ms + - id: 116 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:14 GMT + Link: + - ; rel="last" + 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: + - 2530c1b2-0dbb-4c40-803d-5f535138490c + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 60.729334ms + - id: 117 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d91ea653-6358-4d4b-ac1b-fb8cf2295e3d + status: 200 OK + code: 200 + duration: 23.324375ms + - id: 118 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 4d50142b-4de0-42fa-982b-a497242396b8 + status: 200 OK + code: 200 + duration: 26.969ms + - id: 119 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d1feac31-2b93-4f13-895e-4459508f6f24 + status: 200 OK + code: 200 + duration: 40.00025ms + - id: 120 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:15 GMT + Link: + - ; rel="last" + 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: + - 04482b26-d0ed-4267-aa99-f95a5698a661 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 77.496084ms + - id: 121 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:15 GMT + Link: + - ; rel="last" + 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: + - dcfa60fb-1b3d-4fc8-a5a9-1c6e7c4c163d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 80.4565ms + - id: 122 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 0ca5b2fb-6887-4bff-8b5b-9c4f1b44435d + status: 200 OK + code: 200 + duration: 98.521375ms + - id: 123 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 94cfbee3-bd05-469b-a7a5-a745f942c2e4 + status: 200 OK + code: 200 + duration: 28.524375ms + - id: 124 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 22ac650f-c960-456f-81c9-62dec8e47c9a + status: 200 OK + code: 200 + duration: 24.750958ms + - id: 125 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:15 GMT + Link: + - ; rel="last" + 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: + - f313c9ee-3bc7-4042-b23c-a2f10c07933e + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 64.508292ms + - id: 126 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 74dd24a7-4cbb-4f59-b279-5afe475a914a + status: 200 OK + code: 200 + duration: 31.904125ms + - id: 127 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09: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: + - 1d479d86-1dab-4de5-abe3-24155ca62243 + status: 200 OK + code: 200 + duration: 2.139007083s + - id: 128 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09: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: + - ab373286-e9ac-4260-be99-666198aeb560 + status: 404 Not Found + code: 404 + duration: 39.074792ms + - id: 129 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09: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: + - 41e192cf-2a78-43b7-88b1-36b618a7545a + status: 200 OK + code: 200 + duration: 56.95375ms + - id: 130 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 6b430d3d-3cc2-4bf4-94bd-ee08b6030475 + status: 200 OK + code: 200 + duration: 86.480209ms + - id: 131 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - af04945d-b2a5-49b9-a3e2-cbe86335c9c0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 73.440291ms + - id: 132 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - b7adca73-e709-4cfb-a6b1-354f302899a1 + status: 200 OK + code: 200 + duration: 34.787583ms + - id: 133 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - c8315e9f-2da5-42f2-9dea-758463bfe6a3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 73.89925ms + - id: 134 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - 001b2994-5948-4cfb-8bee-60732fd32527 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 124.530958ms + - id: 135 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4511 + uncompressed: false + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "4511" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - c43a8727-7d16-4306-85a6-27373374a828 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 143.8155ms + - id: 136 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - 8221ef12-4eab-4a89-a3bf-671680a67b58 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 57.422167ms + - id: 137 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d3c8beb2-4300-4108-bdd7-205170e6b11c + status: 200 OK + code: 200 + duration: 27.61025ms + - id: 138 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - 102633ff-2c24-4acf-8310-1a2a5d858988 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 72.656666ms + - id: 139 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 7fc42bf7-142e-4a11-ba81-2a44841e5aa9 + status: 200 OK + code: 200 + duration: 29.346708ms + - id: 140 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - ba50c725-6186-4e20-a5e0-d44618b15098 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 67.050541ms + - id: 141 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - be41bde0-7f29-473d-8c41-8d253bc13127 + status: 200 OK + code: 200 + duration: 31.898083ms + - id: 142 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - f8039fd9-61ab-416e-bb95-de85476ced74 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 62.8445ms + - id: 143 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1098 + uncompressed: false + body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1098" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 574ba0b9-2bf5-46d6-97ff-7af05b70dfe2 + status: 200 OK + code: 200 + duration: 29.247125ms + - id: 144 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 0233cd0d-1eb3-4dd7-846d-1fb0695faa0e + status: 200 OK + code: 200 + duration: 104.938417ms + - id: 145 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2259 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2259" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 90912b64-dab4-4634-80b8-bda68fc38204 + status: 200 OK + code: 200 + duration: 148.232334ms + - id: 146 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - 09503269-6fd6-4dc9-beaf-b44bbfaf2deb + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 53.657625ms + - id: 147 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42:17 GMT + Link: + - ; rel="last" + 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: + - 3eed9595-4b57-489e-b87e-8e58950cc76d + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 57.242625ms + - id: 148 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 729b2840-02e0-491a-b11f-d685ea8ce209 + status: 200 OK + code: 200 + duration: 65.26075ms + - id: 149 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 239ffa90-7579-47d2-b5ea-0c25f11eff47 + status: 200 OK + code: 200 + duration: 68.333917ms + - id: 150 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + 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, 06 Aug 2025 09:42: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: + - 3dbeaf9a-2326-4155-bd99-b8c7bbdd50a8 + status: 204 No Content + code: 204 + duration: 232.921625ms + - id: 151 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - ae0cce7e-cf40-4db1-b4fd-8fbe40045398 + status: 404 Not Found + code: 404 + duration: 55.145583ms + - id: 152 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + 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, 06 Aug 2025 09:42: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: + - fbc8a168-6c17-4988-997b-fb077171e549 + status: 204 No Content + code: 204 + duration: 270.545792ms + - id: 153 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 337bd008-ffdf-4e01-9ba4-d309da43f988 + status: 404 Not Found + code: 404 + duration: 64.537458ms + - id: 154 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 0f4747ff-cdac-4c3b-9938-f1508bed4348 + status: 200 OK + code: 200 + duration: 129.001625ms + - id: 155 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1801 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1801" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - dc6f0526-99a2-4275-8746-8097ac9cc65e + status: 200 OK + code: 200 + duration: 122.013459ms + - id: 156 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + 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, 06 Aug 2025 09:42: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: + - 99167d22-3175-4c19-988c-88deb5e0d74e + status: 204 No Content + code: 204 + duration: 338.362458ms + - id: 157 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 611e524a-25c7-479d-a312-6a5fe050e225 + status: 404 Not Found + code: 404 + duration: 75.504958ms + - id: 158 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 82868276-2471-4453-89ff-c99d3ae2202f + status: 404 Not Found + code: 404 + duration: 27.916667ms + - id: 159 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":"2025-08-06T09:42:18.670904Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:18.670904Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - c6f9de9f-ba87-41c9-a7ee-ab3bf0c07b56 + status: 200 OK + code: 200 + duration: 47.796125ms + - id: 160 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + 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, 06 Aug 2025 09:42: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: + - 9695d1bf-ed08-4526-bf62-7101990a1e25 + status: 204 No Content + code: 204 + duration: 459.032041ms + - id: 161 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + 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, 06 Aug 2025 09:42: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: + - 8a092129-405e-43e7-8307-63524fb46da5 + status: 204 No Content + code: 204 + duration: 84.549583ms + - id: 162 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - bfb968d0-eb0c-4d8e-b79a-ba52fa4f2a56 + status: 404 Not Found + code: 404 + duration: 103.987833ms + - id: 163 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - d83d75d5-53e3-4dad-ad7f-c707a8ba592a + status: 404 Not Found + code: 404 + duration: 42.828167ms + - id: 164 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":"2025-08-06T09:42:18.994737Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:18.994737Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 30879953-69bf-4de8-9016-4548dd1fee36 + status: 200 OK + code: 200 + duration: 48.594208ms + - id: 165 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + 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, 06 Aug 2025 09:42: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: + - 51d729b0-1c22-474d-96f8-1e6b9fb54eeb + status: 204 No Content + code: 204 + duration: 75.388792ms + - id: 166 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + 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, 06 Aug 2025 09:42: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: + - 295836d0-96eb-45aa-9593-d47ae4d53297 + status: 204 No Content + code: 204 + duration: 1.45401275s + - id: 167 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 74cb79b7-588c-4bf2-97dd-af19914d1f90 + status: 404 Not Found + code: 404 + duration: 65.414958ms + - id: 168 + 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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 06 Aug 2025 09:42: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: + - 1bbc828c-d133-48c8-aaf5-fc439deb4f62 + status: 404 Not Found + code: 404 + duration: 79.822042ms