From 13c9faba3a47de19423806da9bf4d8128b839e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Tue, 24 Feb 2026 13:55:02 +0100 Subject: [PATCH 1/4] feat(instance): add computed_image_id attribute --- internal/services/instance/server.go | 7 + internal/services/instance/server_test.go | 11 +- .../services/instance/server_volumes_test.go | 13 +- .../testdata/server-basic.cassette.yaml | 3471 +++-------------- .../testdata/server-minimal.cassette.yaml | 386 +- ...root-volume-from-image-block.cassette.yaml | 752 ++-- ...root-volume-from-image-local.cassette.yaml | 1208 +++--- 7 files changed, 1808 insertions(+), 4040 deletions(-) diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 91d63fb602..0e2507bf14 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -86,6 +86,11 @@ func serverSchema() map[string]*schema.Schema { DiffSuppressFunc: dsf.Locality, ExactlyOneOf: []string{"image", "root_volume.0.volume_id"}, }, + "computed_image_id": { + Type: schema.TypeString, + Computed: true, + Description: "The computed UUID of the base image used by the server", + }, "type": { Type: schema.TypeString, Required: true, @@ -702,6 +707,8 @@ func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m a _ = d.Set("image", zonal.NewID(zone, server.Image.ID).String()) } + _ = d.Set("computed_image_id", server.Image.ID) + if server.PlacementGroup != nil { _ = d.Set("placement_group_id", zonal.NewID(zone, server.PlacementGroup.ID).String()) _ = d.Set("placement_group_policy_respected", server.PlacementGroup.PolicyRespected) diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index ffb0469ec1..788bf9aef7 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -11,9 +11,11 @@ import ( ) const ( - marketplaceImageType = "instance_sbs" - ubuntuFocalImageLabel = "ubuntu_focal" - ubuntuJammyImageLabel = "ubuntu_jammy" + marketplaceImageType = "instance_sbs" + ubuntuFocalImageLabel = "ubuntu_focal" + ubuntuJammyImageLabel = "ubuntu_jammy" + ubuntuFocalSBSFrPar1ImageID = "8ac1fe52-01dc-4dc1-8578-73ec5d126648" + ubuntuFocalLocalFrPar1ImageID = "a02f91b9-de8a-4bd5-8f95-d79cb7d39806" ) func TestAccServer_Minimal(t *testing.T) { @@ -37,6 +39,7 @@ func TestAccServer_Minimal(t *testing.T) { instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-minimal"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalSBSFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.delete_on_termination", "true"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"), @@ -77,6 +80,7 @@ func TestAccServer_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-basic"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-S"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.#", "3"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), @@ -98,6 +102,7 @@ func TestAccServer_Basic(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-basic-renamed"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "DEV1-M"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", "ubuntu_focal"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.#", "5"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), diff --git a/internal/services/instance/server_volumes_test.go b/internal/services/instance/server_volumes_test.go index fb6dec95eb..811bb4ab7e 100644 --- a/internal/services/instance/server_volumes_test.go +++ b/internal/services/instance/server_volumes_test.go @@ -95,6 +95,8 @@ func TestAccServer_RootVolumeFromImage_Block(t *testing.T) { Check: resource.ComposeTestCheckFunc( instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-root-volume-from-image-block"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", ubuntuFocalImageLabel), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalSBSFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "sbs_volume"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.sbs_iops", "5000"), @@ -119,6 +121,8 @@ func TestAccServer_RootVolumeFromImage_Block(t *testing.T) { Check: resource.ComposeTestCheckFunc( instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-root-volume-from-image-block"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", ubuntuFocalImageLabel), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalSBSFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "20"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "sbs_volume"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.sbs_iops", "15000"), @@ -156,6 +160,8 @@ func TestAccServer_RootVolumeFromImage_Local(t *testing.T) { Check: resource.ComposeTestCheckFunc( instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-root-volume-from-image-local"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", ubuntuFocalImageLabel), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "named-volume"), @@ -178,8 +184,10 @@ func TestAccServer_RootVolumeFromImage_Local(t *testing.T) { Check: resource.ComposeTestCheckFunc( instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-root-volume-from-image-local"), - resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", ubuntuFocalImageLabel), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "renamed"), acctest.CheckResourceIDPersisted("scaleway_instance_server.base", &serverID), ), @@ -201,7 +209,10 @@ func TestAccServer_RootVolumeFromImage_Local(t *testing.T) { instancechecks.IsServerPresent(tt, "scaleway_instance_server.base"), serverHasNewVolume(tt, "scaleway_instance_server.base", ubuntuFocalImageLabel), resource.TestCheckResourceAttr("scaleway_instance_server.base", "name", "tf-acc-server-root-volume-from-image-local"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "image", ubuntuFocalImageLabel), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "20"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.name"), acctest.CheckResourceIDChanged("scaleway_instance_server.base", &serverID), // Server should have been re-created as l_ssd cannot be resized. ), diff --git a/internal/services/instance/testdata/server-basic.cassette.yaml b/internal/services/instance/testdata/server-basic.cassette.yaml index 222185f633..796b04b1a9 100644 --- a/internal/services/instance/testdata/server-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-basic.cassette.yaml @@ -9,37 +9,39 @@ interactions: content_length: 0 host: api.scaleway.com form: - page: - - "1" + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 41052 - body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "41052" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:28 GMT - Link: - - ; rel="next",; rel="last" + - Tue, 24 Feb 2026 12:48:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - eb6f6f9b-e0ab-4f12-8bc5-171b917e5d12 - X-Total-Count: - - "76" + - 1583a20e-e8a3-466c-a0e0-f7c5e8757af3 status: 200 OK code: 200 - duration: 113.453272ms + duration: 107.437247ms - id: 1 request: proto: HTTP/1.1 @@ -49,36 +51,36 @@ interactions: host: api.scaleway.com form: page: - - "2" + - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + 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 - content_length: 21472 - body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' + content_length: 41052 + body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' headers: Content-Length: - - "21472" + - "41052" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:29 GMT + - Tue, 24 Feb 2026 12:48:57 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - cc9b61dc-5e6c-4d98-9e9d-9564095815d9 + - ee0e7b0c-7f9b-43a3-91c7-eee009755d68 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 62.827865ms + duration: 53.182583ms - id: 2 request: proto: HTTP/1.1 @@ -87,39 +89,37 @@ interactions: content_length: 0 host: api.scaleway.com form: - image_label: - - ubuntu_focal - order_by: - - type_asc - type: - - instance_sbs - zone: - - fr-par-1 + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + 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 - content_length: 1556 - body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G", "STANDARD2-A2C-8G", "STANDARD2-A4C-16G", "STANDARD2-A8C-32G", "STANDARD2-A16C-64G", "STANDARD2-A32C-128G", "STANDARD2-A48C-192G", "STANDARD2-A64C-256G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' + content_length: 21472 + body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "1556" + - "21472" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:29 GMT + - Tue, 24 Feb 2026 12:48:57 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7f7b833d-4bdb-432b-9a56-aff95e23b3fd + - 33979895-b629-40d9-a885-01cbbb422c4b + X-Total-Count: + - "76" status: 200 OK code: 200 - duration: 65.558172ms + duration: 41.829388ms - id: 3 request: proto: HTTP/1.1 @@ -127,7 +127,7 @@ interactions: proto_minor: 1 content_length: 293 host: api.scaleway.com - body: '{"name":"tf-acc-server-basic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","basic"]}' + body: '{"name":"tf-acc-server-basic","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","basic"]}' headers: Content-Type: - application/json @@ -139,24 +139,24 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1858 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:29.193704+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2275 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1858" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:29 GMT + - Tue, 24 Feb 2026 12:48:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 5a6f2ecd-80cf-40d1-b8dd-5f20b83884fa + - a5a8f05e-b74a-463b-bac4-ddc96f86fb4e status: 201 Created code: 201 - duration: 507.987881ms + duration: 330.033922ms - id: 4 request: proto: HTTP/1.1 @@ -167,28 +167,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1858 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:29.193704+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2275 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1858" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:29 GMT + - Tue, 24 Feb 2026 12:48:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 48a09299-f305-48de-bc51-ac545ad3c7c0 + - 93d2314a-8c3b-49ed-8706-e3c4e077caaa status: 200 OK code: 200 - duration: 232.305824ms + duration: 113.977229ms - id: 5 request: proto: HTTP/1.1 @@ -199,97 +199,97 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1858 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:29.193704+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2275 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1858" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:31 GMT + - Tue, 24 Feb 2026 12:48:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fc7471e8-10b2-4ee3-9203-e512831f6738 + - bd28497e-5441-4232-a730-b978440412db status: 200 OK code: 200 - duration: 1.665789744s + duration: 90.627471ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 host: api.scaleway.com + body: '{"action":"poweron"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 357 + body: '{"task": {"id": "9952a27b-8f8c-45ba-b902-e037cf3d8a2d", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/2937a0e5-229b-457c-888c-9a0605ab2410/action", "href_result": "/servers/2937a0e5-229b-457c-888c-9a0605ab2410", "started_at": "2026-02-24T12:48:57.974521+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "701" + - "357" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:31 GMT + - Tue, 24 Feb 2026 12:48:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9952a27b-8f8c-45ba-b902-e037cf3d8a2d Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 0507e8ab-e39a-45be-9ced-456f03dbf0ad - status: 200 OK - code: 200 - duration: 55.994169ms + - 30087b92-56a8-48e3-9569-3df5dc23e36d + status: 202 Accepted + code: 202 + duration: 239.324225ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 host: api.scaleway.com - body: '{"action":"poweron"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 357 - body: '{"task": {"id": "7f754f71-0908-49cb-912d-f38eca0ededc", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action", "href_result": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff", "started_at": "2026-02-24T09:24:32.042192+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 2297 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.792636+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "357" + - "2297" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:32 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7f754f71-0908-49cb-912d-f38eca0ededc + - Tue, 24 Feb 2026 12:48:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6807cc82-9c1e-4bff-bf4e-53fea219aa07 - status: 202 Accepted - code: 202 - duration: 497.690027ms + - 3650b111-73f7-4dc5-946d-072c4dc8a0f7 + status: 200 OK + code: 200 + duration: 85.61742ms - id: 8 request: proto: HTTP/1.1 @@ -300,28 +300,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1880 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:31.610352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2401 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.792636+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1880" + - "2401" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:32 GMT + - Tue, 24 Feb 2026 12:49:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - cf0132f7-ac98-43cb-a5b1-e9959055c00e + - f518c6c7-1939-4b94-a683-9309c87a0f4c status: 200 OK code: 200 - duration: 134.637417ms + duration: 91.530827ms - id: 9 request: proto: HTTP/1.1 @@ -332,28 +332,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2401 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.792636+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2014" + - "2401" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 82ae2b08-4bf5-4e23-bf3f-f3aacd494368 + - 07ce499e-6274-4cab-905f-3f0ffe9c2321 status: 200 OK code: 200 - duration: 108.187509ms + duration: 91.818157ms - id: 10 request: proto: HTTP/1.1 @@ -364,28 +364,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2014" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e720efed-255d-42f5-9a1f-bab5663667ea + - 24b2d960-e104-4626-ac92-2434267dcd7f status: 200 OK code: 200 - duration: 103.445899ms + duration: 75.626462ms - id: 11 request: proto: HTTP/1.1 @@ -396,28 +396,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c26d550b-5fc9-409e-93a5-4c94cdc95be0 - status: 404 Not Found - code: 404 - duration: 27.39684ms + - 8f01647c-29f9-415d-9f6d-707551cec69a + status: 200 OK + code: 200 + duration: 89.721141ms - id: 12 request: proto: HTTP/1.1 @@ -428,28 +428,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9eb47c8a-8cab-4f43-8ca7-91906442e8e1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 519 + body: '{"volume": {"id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "701" + - "519" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - f5f6a951-74c4-492b-89d1-6bb28eba26db + - d4ab0aab-aecd-4e55-84cf-2ddb78e64ab4 status: 200 OK code: 200 - duration: 70.033188ms + duration: 74.803618ms - id: 13 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/user_data method: GET response: proto: HTTP/2.0 @@ -474,14 +474,14 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fb511a9c-a079-4f60-b8a3-44065aca14f6 + - c0571884-6730-4e2e-94b8-323f58ac03aa status: 200 OK code: 200 - duration: 101.508437ms + duration: 46.52006ms - id: 14 request: proto: HTTP/1.1 @@ -492,7 +492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/private_nics method: GET response: proto: HTTP/2.0 @@ -506,18 +506,18 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c3cb19cd-571b-47b9-a6da-854ceaf36d41 + - 7e6f26d0-d54e-455b-b9ad-a34d898d920d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.252171ms + duration: 56.461727ms - id: 15 request: proto: HTTP/1.1 @@ -528,28 +528,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2014" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:37 GMT + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 06652906-d0ce-40d4-8aea-ffb94a6dea56 + - 4b7c539c-f393-4a4c-adaf-b721ce1208ef status: 200 OK code: 200 - duration: 103.234127ms + duration: 70.959043ms - id: 16 request: proto: HTTP/1.1 @@ -557,35 +557,40 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT - Link: - - ; rel="last" + - Tue, 24 Feb 2026 12:49:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c51a1982-3fb6-45f9-bf00-f70cad58b602 - X-Total-Count: - - "0" + - 404c986d-f47b-4529-980f-b864993f0358 status: 200 OK code: 200 - duration: 101.714679ms + duration: 60.172891ms - id: 17 request: proto: HTTP/1.1 @@ -593,31 +598,40 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "2014" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e77d8a8d-74cb-4dd2-8afb-581cb08ad03e + - d13c4ee1-3878-4ab9-ab2f-0c2cb82a0e9a status: 200 OK code: 200 - duration: 131.379379ms + duration: 61.469173ms - id: 18 request: proto: HTTP/1.1 @@ -628,28 +642,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7fbd0061-d928-41d8-b55d-3de1443cd47c - status: 404 Not Found - code: 404 - duration: 98.115831ms + - 1910d3e5-3928-49b7-af96-e13bed478b7c + status: 200 OK + code: 200 + duration: 94.168828ms - id: 19 request: proto: HTTP/1.1 @@ -660,28 +674,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9eb47c8a-8cab-4f43-8ca7-91906442e8e1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 519 + body: '{"volume": {"id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "701" + - "519" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c3e9d617-fc3d-4ca8-92c5-c9296b7b4fec + - c783318f-f525-451e-9adc-cf150c7e6d7d status: 200 OK code: 200 - duration: 111.233497ms + duration: 55.176806ms - id: 20 request: proto: HTTP/1.1 @@ -692,7 +706,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/user_data method: GET response: proto: HTTP/2.0 @@ -706,14 +720,14 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 885cd49c-bfe4-4b61-968b-85bdffd567c7 + - 5ac46f66-886f-44b5-b152-e8c47a7e60bc status: 200 OK code: 200 - duration: 61.192829ms + duration: 51.095988ms - id: 21 request: proto: HTTP/1.1 @@ -724,7 +738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/private_nics method: GET response: proto: HTTP/2.0 @@ -738,18 +752,18 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:38 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2ce2de5f-fe72-4916-8a24-48a73cfb79c4 + - 32fe69a5-0313-4205-9386-57fee79113e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 129.033461ms + duration: 46.674811ms - id: 22 request: proto: HTTP/1.1 @@ -757,31 +771,40 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "2014" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fec245f1-cf10-49f5-b303-6ae0527ee02f + - 10d87def-1aa2-4878-ac04-5adef4bd1458 status: 200 OK code: 200 - duration: 104.720491ms + duration: 60.03376ms - id: 23 request: proto: HTTP/1.1 @@ -792,28 +815,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 1ef3d1e8-8cc9-43ea-aa46-f2992985acfe - status: 404 Not Found - code: 404 - duration: 114.843096ms + - c01a7257-0701-401f-8c5c-c189cfaad8cf + status: 200 OK + code: 200 + duration: 63.311411ms - id: 24 request: proto: HTTP/1.1 @@ -824,28 +847,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9eb47c8a-8cab-4f43-8ca7-91906442e8e1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 519 + body: '{"volume": {"id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "701" + - "519" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3019793c-1226-4e49-a503-644e63ffd935 + - 5d16ef9e-07f1-4389-83f8-ca542df15b4c status: 200 OK code: 200 - duration: 52.506203ms + duration: 60.676777ms - id: 25 request: proto: HTTP/1.1 @@ -856,7 +879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/user_data method: GET response: proto: HTTP/2.0 @@ -870,14 +893,14 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a7d53c43-77c4-42a1-b8b9-5e2999b12f09 + - b6b9e5a0-9048-444d-b4e5-d06488e5db35 status: 200 OK code: 200 - duration: 54.844666ms + duration: 50.190929ms - id: 26 request: proto: HTTP/1.1 @@ -888,7 +911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/private_nics method: GET response: proto: HTTP/2.0 @@ -902,18 +925,18 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:14 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fbe35a46-69ef-45dc-adff-ebbb811d0d58 + - b13bb404-80de-4561-8882-347f0f22db75 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 199.543976ms + duration: 62.008586ms - id: 27 request: proto: HTTP/1.1 @@ -924,28 +947,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2014" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT + - Tue, 24 Feb 2026 12:49:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a2a03e58-f192-4daf-bc81-48181e2a0eb9 + - c577e850-7707-4025-9661-aecefb1142f0 status: 200 OK code: 200 - duration: 82.914525ms + duration: 89.866234ms - id: 28 request: proto: HTTP/1.1 @@ -953,77 +976,68 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com - form: - page: - - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 41052 - body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' + content_length: 2432 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:09.027076+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "41052" + - "2432" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT - Link: - - ; rel="next",; rel="last" + - Tue, 24 Feb 2026 12:49:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7c9d83a1-d0d0-4b35-a65c-75da7c4802d1 - X-Total-Count: - - "76" + - c5a71b31-f90f-4b27-bd5c-37b51b4461dd status: 200 OK code: 200 - duration: 101.628997ms + duration: 67.420372ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 host: api.scaleway.com - form: - page: - - "2" + body: '{"action":"terminate"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 21472 - body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' + content_length: 353 + body: '{"task": {"id": "2e925bdc-288d-43fa-8a8c-3d71e27b2d70", "description": "server_terminate", "status": "pending", "href_from": "/servers/2937a0e5-229b-457c-888c-9a0605ab2410/action", "href_result": "/servers/2937a0e5-229b-457c-888c-9a0605ab2410", "started_at": "2026-02-24T12:49:15.227863+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "21472" + - "353" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:39 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Tue, 24 Feb 2026 12:49:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2e925bdc-288d-43fa-8a8c-3d71e27b2d70 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 97815f59-0b73-4409-b3e2-7ee326883873 - X-Total-Count: - - "76" - status: 200 OK - code: 200 - duration: 104.161409ms + - 88de6375-988c-42b1-bde2-15493b915d2a + status: 202 Accepted + code: 202 + duration: 184.105435ms - id: 30 request: proto: HTTP/1.1 @@ -1034,28 +1048,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2395 + body: '{"server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "2937a0e5-229b-457c-888c-9a0605ab2410", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:48:57.308428+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:59", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:48:57.308428+00:00", "modification_date": "2026-02-24T12:49:15.097577+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "1301", "node_id": "58"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2937a0e5-229b-457c-888c-9a0605ab2410.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2014" + - "2395" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT + - Tue, 24 Feb 2026 12:49:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3739eba3-5cd5-4532-ad33-1bb9ba5ef2f2 + - bdc0321c-8f2b-4edd-af48-2727567c0bbb status: 200 OK code: 200 - duration: 125.124804ms + duration: 76.104268ms - id: 31 request: proto: HTTP/1.1 @@ -1063,38 +1077,31 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com - form: - page: - - "1" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2937a0e5-229b-457c-888c-9a0605ab2410 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 41052 - body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2937a0e5-229b-457c-888c-9a0605ab2410"}' headers: Content-Length: - - "41052" + - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT - Link: - - ; rel="next",; rel="last" + - Tue, 24 Feb 2026 12:49:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ec7ef5b9-9a77-486c-a1f4-553fdae5248d - X-Total-Count: - - "76" - status: 200 OK - code: 200 - duration: 32.637919ms + - abf2e0a9-aa21-4fb5-a9f8-c19e96ea8a98 + status: 404 Not Found + code: 404 + duration: 48.013894ms - id: 32 request: proto: HTTP/1.1 @@ -1102,38 +1109,31 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com - form: - page: - - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9eb47c8a-8cab-4f43-8ca7-91906442e8e1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 21472 - body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9eb47c8a-8cab-4f43-8ca7-91906442e8e1"}' headers: Content-Length: - - "21472" + - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Tue, 24 Feb 2026 12:49:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e00500bb-774d-4901-a744-8bda9a3d32ec - X-Total-Count: - - "76" - status: 200 OK - code: 200 - duration: 36.384328ms + - 623ce26e-71e8-4ead-b523-2e5045f7caa9 + status: 404 Not Found + code: 404 + duration: 32.81999ms - id: 33 request: proto: HTTP/1.1 @@ -1144,63 +1144,67 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9eb47c8a-8cab-4f43-8ca7-91906442e8e1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2014 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:34.661599+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 127 + body: '{"message":"resource is not found","resource":"volume","resource_id":"9eb47c8a-8cab-4f43-8ca7-91906442e8e1","type":"not_found"}' headers: Content-Length: - - "2014" + - "127" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT + - Tue, 24 Feb 2026 12:49:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 68e71ea7-b290-482f-97eb-1abd16c2ca07 - status: 200 OK - code: 200 - duration: 118.798012ms + - e08f925c-e3b4-449d-8a14-380735999c5d + status: 404 Not Found + code: 404 + duration: 23.201581ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 0 host: api.scaleway.com - body: '{"name":"tf-acc-server-basic-renamed","tags":["terraform-test","scaleway_instance_server","basic","more","tags"]}' + form: + page: + - "1" headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: PATCH + 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 - content_length: 2046 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:40.504601+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 41052 + body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' headers: Content-Length: - - "2046" + - "41052" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT + - Tue, 24 Feb 2026 12:49:20 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 59dd3da3-cd7f-417f-9d28-933090074b9d + - d5bfcb36-4fef-4fda-8752-8af5da8bfd23 + X-Total-Count: + - "76" status: 200 OK code: 200 - duration: 292.338056ms + duration: 53.385233ms - id: 35 request: proto: HTTP/1.1 @@ -1208,63 +1212,75 @@ interactions: proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + page: + - "2" headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + 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 - content_length: 2046 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:40.504601+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 21472 + body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' headers: Content-Length: - - "2046" + - "21472" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT + - Tue, 24 Feb 2026 12:49:20 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4b27b8da-66f3-4e34-94da-fc0f26e7ccd1 + - 2fa7f5d2-f43d-4e17-80d7-5cef4b26cbf1 + X-Total-Count: + - "76" status: 200 OK code: 200 - duration: 114.087902ms + duration: 37.986847ms - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 293 host: api.scaleway.com + body: '{"name":"tf-acc-server-basic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","basic"]}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET + 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 - content_length: 2046 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:40.504601+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2275 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2046" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:40 GMT + - Tue, 24 Feb 2026 12:49:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c6dc0e84-204a-431f-89de-88625cbaa881 - status: 200 OK - code: 200 - duration: 82.409035ms + - e59a059b-8831-42a3-8cd3-b7e6e64d7965 + status: 201 Created + code: 201 + duration: 261.598241ms - id: 37 request: proto: HTTP/1.1 @@ -1275,28 +1291,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2046 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:40.504601+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2275 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2046" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:41 GMT + - Tue, 24 Feb 2026 12:49:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 248f97a4-08e3-4efc-a0d2-b7c35471b22d + - f2bee480-bb4e-4983-8263-76b385501b83 status: 200 OK code: 200 - duration: 108.101116ms + duration: 64.17361ms - id: 38 request: proto: HTTP/1.1 @@ -1307,65 +1323,65 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 2275 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "701" + - "2275" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:41 GMT + - Tue, 24 Feb 2026 12:49:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a3b33496-4e1e-410e-bc9b-ca03a4f66953 + - b7094262-8a59-4e42-823e-8b98e45cb23d status: 200 OK code: 200 - duration: 46.87902ms + duration: 81.238613ms - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 20 host: api.scaleway.com - body: '{"action":"poweroff"}' + body: '{"action":"poweron"}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 352 - body: '{"task": {"id": "8f7b664a-bac6-47dd-b170-3a83405983e2", "description": "server_poweroff", "status": "pending", "href_from": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action", "href_result": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff", "started_at": "2026-02-24T09:24:41.223612+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 357 + body: '{"task": {"id": "be177fd1-8363-46fc-83fa-44909a5079a2", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/651a1a88-276a-4b2b-8004-7d74549d6457/action", "href_result": "/servers/651a1a88-276a-4b2b-8004-7d74549d6457", "started_at": "2026-02-24T12:49:21.165105+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "352" + - "357" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:41 GMT + - Tue, 24 Feb 2026 12:49:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8f7b664a-bac6-47dd-b170-3a83405983e2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/be177fd1-8363-46fc-83fa-44909a5079a2 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fd2d0c65-e2d3-48b7-b5d2-b8dead770b50 + - cd8b4780-3c50-4baa-9c99-6a7c9b320210 status: 202 Accepted code: 202 - duration: 257.692873ms + duration: 218.216791ms - id: 40 request: proto: HTTP/1.1 @@ -1376,28 +1392,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2006 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:41.094231+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2297 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.997579+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2006" + - "2297" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:41 GMT + - Tue, 24 Feb 2026 12:49:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - b4758e2d-62a9-4ddd-9811-5d2b6bb2e084 + - 2714bed7-f00c-449b-a27c-8786f429e1db status: 200 OK code: 200 - duration: 107.65575ms + duration: 91.736184ms - id: 41 request: proto: HTTP/1.1 @@ -1408,28 +1424,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2006 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:41.094231+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2400 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.997579+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2006" + - "2400" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:46 GMT + - Tue, 24 Feb 2026 12:49:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c846768f-ba5e-4f2d-91b0-0a7f52576e88 + - 615988e3-eb25-45fb-b7fa-f32b525db342 status: 200 OK code: 200 - duration: 98.779805ms + duration: 78.665336ms - id: 42 request: proto: HTTP/1.1 @@ -1440,28 +1456,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2006 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:41.094231+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2400 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.997579+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2006" + - "2400" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:51 GMT + - Tue, 24 Feb 2026 12:49:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - bbe6c5f4-cf0f-46ad-b216-28c8c0a9f15b + - a770a00b-986b-4417-b665-cde5adb29936 status: 200 OK code: 200 - duration: 107.046285ms + duration: 77.670768ms - id: 43 request: proto: HTTP/1.1 @@ -1472,28 +1488,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2006 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopping", "protected": false, "state_detail": "stopping", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:24:41.094231+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "803", "node_id": "24"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2006" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:24:56 GMT + - Tue, 24 Feb 2026 12:49:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 111877df-88a5-42b4-a1c3-36de03d02e25 + - 32d395f8-d2c9-48bf-849e-de29d7c7a3f2 status: 200 OK code: 200 - duration: 140.983937ms + duration: 71.09544ms - id: 44 request: proto: HTTP/1.1 @@ -1504,63 +1520,60 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1890 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:00.616096+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1890" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:01 GMT + - Tue, 24 Feb 2026 12:49:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - eb17c6bf-e035-4df6-99d5-53ea45dd6aff + - 67ea2468-7c29-4a73-804c-6ee09cc9f799 status: 200 OK code: 200 - duration: 118.807647ms + duration: 69.919914ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 28 + content_length: 0 host: api.scaleway.com - body: '{"commercial_type":"DEV1-M"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f51744b4-c534-4e78-834f-d9101392833b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1890 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:02.007371+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 519 + body: '{"volume": {"id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "1890" + - "519" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:02 GMT + - Tue, 24 Feb 2026 12:49:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3fa1933d-6ad1-43a3-8d0e-6b75274769a1 + - 0e3b77d7-5212-47a3-9c7b-ddbe4977438c status: 200 OK code: 200 - duration: 275.408702ms + duration: 63.646561ms - id: 46 request: proto: HTTP/1.1 @@ -1571,28 +1584,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1890 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:02.007371+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "1890" + - "17" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:02 GMT + - Tue, 24 Feb 2026 12:49:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 1d294793-4d4c-47c5-8e1d-c0fec1b85327 + - 27db7d7f-18c2-45f8-95b1-9684c00d8c33 status: 200 OK code: 200 - duration: 122.320533ms + duration: 42.854262ms - id: 47 request: proto: HTTP/1.1 @@ -1603,2321 +1616,147 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "701" + - "20" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:02 GMT + - Tue, 24 Feb 2026 12:49:36 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - abf682b6-9856-45a5-bac6-eef4cf403b76 + - 59bc0160-4cee-4bda-b6bf-304347f1815a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 55.10773ms + duration: 48.750517ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 host: api.scaleway.com - body: '{"action":"poweron"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 357 - body: '{"task": {"id": "7ff35681-ee1a-444d-9719-843d92deb1a7", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action", "href_result": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff", "started_at": "2026-02-24T09:25:02.579574+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7ff35681-ee1a-444d-9719-843d92deb1a7 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9a9c440d-7969-4a76-a488-4a9bb408ec38 - status: 202 Accepted - code: 202 - duration: 242.552196ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1912 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:02.393302+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1912" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - bd78bc8d-cdc3-461e-8502-20d05e1eb3f0 - status: 200 OK - code: 200 - duration: 123.330083ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6e8580a9-697b-4fd4-8501-86cd66f25865 - status: 200 OK - code: 200 - duration: 144.883572ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8d8a572f-c352-4aaf-9630-b335d98070e9 - status: 200 OK - code: 200 - duration: 92.57568ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 21e6d3e5-46c2-468a-a6c3-fee7864572c3 - status: 404 Not Found - code: 404 - duration: 52.357114ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ca76a713-6fba-495b-b3d2-b6ff942d63c2 - status: 200 OK - code: 200 - duration: 63.638762ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 42403dcf-e742-4b57-8005-5285c635b133 - status: 200 OK - code: 200 - duration: 70.475756ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - aca5b718-9463-4e39-8153-1d0578945497 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 66.217092ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 167f199d-c702-4cbe-a4d7-98082c125834 - status: 200 OK - code: 200 - duration: 98.125056ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 015ea368-a765-4407-80ec-8a71e6012431 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 48.745992ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c87d9150-468f-4e13-907b-01be325480b2 - status: 200 OK - code: 200 - duration: 135.003435ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a7612218-b418-4755-baba-c7b57ad89ef3 - status: 404 Not Found - code: 404 - duration: 30.418664ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 48231a20-dd48-406f-b035-9fee00e91bb2 - status: 200 OK - code: 200 - duration: 57.903063ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ce8be357-d333-4478-9fb4-96e29b6e9eaa - status: 200 OK - code: 200 - duration: 54.94439ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7bb59f35-e445-48c9-9fc2-94f71dde3079 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 62.706009ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - cedfaf61-5016-4af9-8418-0143dbb0cee8 - status: 200 OK - code: 200 - duration: 97.51639ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d37a7e82-4358-4afb-81b6-e5402ab806a7 - status: 404 Not Found - code: 404 - duration: 35.037932ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - eb6697a1-191f-4e50-a14b-bfe01e32d7b5 - status: 200 OK - code: 200 - duration: 46.723037ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - de34bd31-03ce-4d98-a4f5-20aabe7927df - status: 200 OK - code: 200 - duration: 55.088314ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 095680cc-4f2e-4d29-9a16-aabe78232cf2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 53.772724ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2047 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic", "more", "tags"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:05.543972+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2047" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8eeb80fb-019e-44cb-9251-2ca6d54b4c7c - status: 200 OK - code: 200 - duration: 92.834233ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 11 - host: api.scaleway.com - body: '{"tags":[]}' - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d2fb77c3-fafe-44b8-8389-52524ae346a0 - status: 200 OK - code: 200 - duration: 195.426448ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0fc11731-2348-4031-82f9-97499eea18f3 - status: 200 OK - code: 200 - duration: 102.125688ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 16b4c050-a353-4c44-b933-7963eb9b9d4f - status: 200 OK - code: 200 - duration: 90.642057ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c87e0643-562d-43a2-a090-85c9088bff33 - status: 404 Not Found - code: 404 - duration: 35.637823ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1d79c86c-9ab2-477c-b0c8-a5f26e2e88f8 - status: 200 OK - code: 200 - duration: 51.384786ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4f1e0afd-e9f6-4dd3-9345-ee862bbbc20b - status: 200 OK - code: 200 - duration: 56.395278ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f1ddd8b0-72a5-43d8-956c-313bded61f8c - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 50.81858ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 58b989da-bcb8-4024-b936-0ce398bf93fa - status: 200 OK - code: 200 - duration: 85.568896ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5e24341b-077b-4227-99c5-6282c0b45122 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 47.012347ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f365505b-f289-48da-a985-586d99664cd9 - status: 200 OK - code: 200 - duration: 103.205111ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 54a715af-8510-4206-a0ee-ada97dc02323 - status: 404 Not Found - code: 404 - duration: 34.361236ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - cc182bd5-8ec4-48f5-ba71-2359352b6084 - status: 200 OK - code: 200 - duration: 49.809663ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 43123a43-8db6-44bd-984d-686cc314bb12 - status: 200 OK - code: 200 - duration: 55.81219ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 26868a33-8502-4b4e-96d6-6efcda6391fa - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 45.862273ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e4769c3e-537f-472e-8d9f-22a9a44bd6ee - status: 200 OK - code: 200 - duration: 104.324088ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 57d86f19-e970-42b1-8423-78053a715579 - status: 404 Not Found - code: 404 - duration: 32.391975ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 701 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:24:29.328310Z", "references":[{"id":"85ce29eb-b84c-4dd3-8692-34d7b017a409", "product_resource_type":"instance_server", "product_resource_id":"80d67fff-6cf4-4456-94a9-238f2219e0ff", "created_at":"2026-02-24T09:24:29.328310Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - cf23b15a-5fe5-47bd-90db-bb6922b788f5 - status: 200 OK - code: 200 - duration: 63.269551ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8b7c517c-2a69-45a4-8cf0-43cc8007d25a - status: 200 OK - code: 200 - duration: 46.241453ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' - headers: - Content-Length: - - "20" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 84da7610-e92a-4153-9720-e2c68f2505e3 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 51.879566ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1dfefc19-6999-4dfb-829c-954a2a40bd3b - status: 200 OK - code: 200 - duration: 103.063883ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 971 - body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' - headers: - Content-Length: - - "971" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 43dc6aa3-277c-4b59-8122-d9a2a6196e51 - status: 200 OK - code: 200 - duration: 60.259291ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4d059d18-27c1-4920-88c3-76db01e36f18 - status: 200 OK - code: 200 - duration: 86.192943ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1978 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:09.941352+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1978" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5b00227b-2208-4655-bca4-674e8c51787b - status: 200 OK - code: 200 - duration: 98.734445ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - host: api.scaleway.com - body: '{"action":"terminate"}' - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 353 - body: '{"task": {"id": "1e98ec55-aec8-4b39-8b37-290f23d6eb3f", "description": "server_terminate", "status": "pending", "href_from": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff/action", "href_result": "/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff", "started_at": "2026-02-24T09:25:12.414411+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' - headers: - Content-Length: - - "353" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e98ec55-aec8-4b39-8b37-290f23d6eb3f - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7c4fac1e-983b-4775-84f9-f68aa097983a - status: 202 Accepted - code: 202 - duration: 203.293599ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1941 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:12.268056+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1941" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e1276d77-4fda-4d29-99e4-d157fdac8bfd - status: 200 OK - code: 200 - duration: 111.652753ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1941 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:12.268056+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1941" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 66a992a5-b445-4c8a-b3d1-33923b6ae826 - status: 200 OK - code: 200 - duration: 101.597307ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1941 - body: '{"server": {"id": "80d67fff-6cf4-4456-94a9-238f2219e0ff", "name": "tf-acc-server-basic-renamed", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-renamed", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "cecc71c1-fd13-47ce-bf72-73027570a111", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:24:29.193704+00:00", "modification_date": "2026-02-24T09:25:12.268056+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "16", "hypervisor_id": "1501", "node_id": "50"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "80d67fff-6cf4-4456-94a9-238f2219e0ff.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1941" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b8fefbe9-df9c-48d5-9d11-73735a460c9d - status: 200 OK - code: 200 - duration: 94.870956ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/80d67fff-6cf4-4456-94a9-238f2219e0ff - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "80d67fff-6cf4-4456-94a9-238f2219e0ff"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 50c8fe6e-5d25-4481-9da2-98b0f19f5933 - status: 404 Not Found - code: 404 - duration: 44.434811ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "cecc71c1-fd13-47ce-bf72-73027570a111"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e497e1c8-4af2-4a03-b2c3-f574d77c62d5 - status: 404 Not Found - code: 404 - duration: 29.079521ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 494 - body: '{"id":"cecc71c1-fd13-47ce-bf72-73027570a111", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:24:29.328310Z", "updated_at":"2026-02-24T09:25:23.575114Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-24T09:25:23.575114Z", "zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4d2a38e1-6904-474a-af1c-9f85e59ca4b9 - status: 200 OK - code: 200 - duration: 44.493293ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cecc71c1-fd13-47ce-bf72-73027570a111 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - cf94a6c7-0f38-4565-9f22-d8849cfbbbc8 - status: 204 No Content - code: 204 - duration: 81.719014ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - page: - - "1" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 - content_length: 41052 - body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' - headers: - Content-Length: - - "41052" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 98f74284-77bb-4cda-854e-d90b6cf5b282 - X-Total-Count: - - "76" - status: 200 OK - code: 200 - duration: 34.532795ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - page: - - "2" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 - content_length: 21472 - body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' - headers: - Content-Length: - - "21472" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7f379d16-bebc-4151-93b0-7ec77be9de4f - X-Total-Count: - - "76" - status: 200 OK - code: 200 - duration: 41.409672ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - image_label: - - ubuntu_jammy - order_by: - - type_asc - type: - - instance_sbs - zone: - - fr-par-1 - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1556 - body: '{"local_images":[{"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G", "STANDARD2-A2C-8G", "STANDARD2-A4C-16G", "STANDARD2-A8C-32G", "STANDARD2-A16C-64G", "STANDARD2-A32C-128G", "STANDARD2-A48C-192G", "STANDARD2-A64C-256G"], "label":"ubuntu_jammy", "type":"instance_sbs"}, {"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}], "total_count":2}' - headers: - Content-Length: - - "1556" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1b64059e-92f8-4982-b4b7-fbe5fd6b5d05 - status: 200 OK - code: 200 - duration: 46.091059ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 241 - host: api.scaleway.com - body: '{"name":"tf-acc-server-basic-replaced","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 - content_length: 1827 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:28.179930+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1827" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9838d22a-d7d5-44b4-8c28-32e183def086 - status: 201 Created - code: 201 - duration: 507.322709ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1827 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:28.179930+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1827" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b15af1ef-fcba-40df-a88c-3be81f488b35 - status: 200 OK - code: 200 - duration: 94.024088ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1827 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:28.179930+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1827" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 52fb39d1-4740-4362-90b8-b723b4ed4616 - status: 200 OK - code: 200 - duration: 89.850987ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 705 - body: '{"id":"fc007b52-b5de-496d-81f5-50805630df33", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:25:28.324597Z", "updated_at":"2026-02-24T09:25:28.324597Z", "references":[{"id":"c55a9a90-47bf-4c93-a3d0-b94c2c854a46", "product_resource_type":"instance_server", "product_resource_id":"696945eb-5bdf-4380-9662-d734ff70dcdf", "created_at":"2026-02-24T09:25:28.324597Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "705" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d69c401c-1575-4e6c-b0a4-6f242957f289 - status: 200 OK - code: 200 - duration: 58.119828ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - host: api.scaleway.com - body: '{"action":"poweron"}' - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 357 - body: '{"task": {"id": "c4ea44cf-3ec5-4298-8f79-7d1e8b99a27a", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/action", "href_result": "/servers/696945eb-5bdf-4380-9662-d734ff70dcdf", "started_at": "2026-02-24T09:25:29.079339+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:29 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c4ea44cf-3ec5-4298-8f79-7d1e8b99a27a - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 82ba9a9e-34b4-4257-8549-9e13c2ce4ab0 - status: 202 Accepted - code: 202 - duration: 246.209924ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1849 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:28.894381+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1849" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - fd52a56d-90f1-4277-aa4e-5b114ff6c376 - status: 200 OK - code: 200 - duration: 88.360606ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1983" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3979d094-88fa-425f-bb05-19c9ae1d5b5f - status: 200 OK - code: 200 - duration: 94.836934ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1983" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7aef2a8b-0aa3-438e-a763-ddf50f0a3267 - status: 200 OK - code: 200 - duration: 110.769221ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fc007b52-b5de-496d-81f5-50805630df33"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7454b2a6-f570-4126-9208-5539c400fc29 - status: 404 Not Found - code: 404 - duration: 30.024216ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 705 - body: '{"id":"fc007b52-b5de-496d-81f5-50805630df33", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:25:28.324597Z", "updated_at":"2026-02-24T09:25:28.324597Z", "references":[{"id":"c55a9a90-47bf-4c93-a3d0-b94c2c854a46", "product_resource_type":"instance_server", "product_resource_id":"696945eb-5bdf-4380-9662-d734ff70dcdf", "created_at":"2026-02-24T09:25:28.324597Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' - headers: - Content-Length: - - "705" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dd907130-64f8-41c4-ab9f-77d9b6771d7b - status: 200 OK - code: 200 - duration: 45.308783ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' - headers: - Content-Length: - - "17" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ec31d97e-8af8-4023-9187-4b8e1ecb2b50 - status: 200 OK - code: 200 - duration: 88.092969ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "20" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Link: - - ; rel="last" + - Tue, 24 Feb 2026 12:49:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9fd6ce71-d3bb-4092-a8bb-de30246ab49c - X-Total-Count: - - "0" + - b8dac410-56fd-4e41-b54f-68ecf1cdad27 status: 200 OK code: 200 - duration: 39.273545ms - - id: 115 + duration: 92.309982ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "1983" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:34 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - cfcc3f67-7fa5-4f7b-be30-747ec7bea083 + - 0f969a31-8de7-4886-a4ed-3ccbf35c8916 status: 200 OK code: 200 - duration: 78.092154ms - - id: 116 + duration: 47.873891ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 0 host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/private_nics + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:34 GMT - Link: - - ; rel="last" + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a5e3b7e1-f6b3-41b1-bd78-d0d51ad9a46c - X-Total-Count: - - "0" + - 0a2546ed-bc84-4bd3-93fe-9450dd1e40e5 status: 200 OK code: 200 - duration: 57.265274ms - - id: 117 + duration: 53.585099ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3927,61 +1766,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1983" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a864c022-44dd-4176-9173-5699ac68a0b0 + - 5cfa70bf-d0c8-4ae4-802f-6bd4e1a5e23e status: 200 OK code: 200 - duration: 83.868781ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fc007b52-b5de-496d-81f5-50805630df33"}' - headers: - Content-Length: - - "143" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6a413521-aa5d-4474-a5b8-c6aedc334114 - status: 404 Not Found - code: 404 - duration: 29.566567ms - - id: 119 + duration: 78.895919ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3991,29 +1798,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f51744b4-c534-4e78-834f-d9101392833b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"fc007b52-b5de-496d-81f5-50805630df33", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:25:28.324597Z", "updated_at":"2026-02-24T09:25:28.324597Z", "references":[{"id":"c55a9a90-47bf-4c93-a3d0-b94c2c854a46", "product_resource_type":"instance_server", "product_resource_id":"696945eb-5bdf-4380-9662-d734ff70dcdf", "created_at":"2026-02-24T09:25:28.324597Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 519 + body: '{"volume": {"id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "705" + - "519" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - bfad86bf-da82-4241-9702-f5a12f115f01 + - 7e1255e0-f912-4e71-8f9a-cf304ff78af2 status: 200 OK code: 200 - duration: 42.05006ms - - id: 120 + duration: 58.891238ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -4023,7 +1830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/user_data method: GET response: proto: HTTP/2.0 @@ -4037,15 +1844,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 87f70ff4-8223-44e5-be63-cc79f623929f + - 647681ab-6e75-4f97-a82f-ec693ef1a1d1 status: 200 OK code: 200 - duration: 45.864069ms - - id: 121 + duration: 56.775377ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4055,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/private_nics method: GET response: proto: HTTP/2.0 @@ -4069,19 +1876,19 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 68e58d31-82fb-4f0a-a0f8-3a42dd83a6d6 + - 3ea03200-78d4-4a5f-937c-3d8c7a0d9928 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 50.596572ms - - id: 122 + duration: 46.596725ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4091,29 +1898,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1983" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - cd49e5e2-1d9a-47bc-ba2f-1fdf82263953 + - b523c947-1ef8-41fc-abba-b3320cd38a18 status: 200 OK code: 200 - duration: 102.173146ms - - id: 123 + duration: 88.629535ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4123,29 +1930,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1983 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:32.445782+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' + content_length: 2431 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:32.333273+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1983" + - "2431" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:35 GMT + - Tue, 24 Feb 2026 12:49:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6a5d30e3-2e80-4afb-9db1-d323d3e9b779 + - b7aa262e-7df8-4feb-8fe8-ce3650314a64 status: 200 OK code: 200 - duration: 93.082571ms - - id: 124 + duration: 74.940977ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -4158,31 +1965,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "f5984375-591f-4446-b546-6da0df69761f", "description": "server_terminate", "status": "pending", "href_from": "/servers/696945eb-5bdf-4380-9662-d734ff70dcdf/action", "href_result": "/servers/696945eb-5bdf-4380-9662-d734ff70dcdf", "started_at": "2026-02-24T09:25:36.073237+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "76dec11b-3dfc-49da-a3aa-c840fdb0308f", "description": "server_terminate", "status": "pending", "href_from": "/servers/651a1a88-276a-4b2b-8004-7d74549d6457/action", "href_result": "/servers/651a1a88-276a-4b2b-8004-7d74549d6457", "started_at": "2026-02-24T12:49:37.986170+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:36 GMT + - Tue, 24 Feb 2026 12:49:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f5984375-591f-4446-b546-6da0df69761f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/76dec11b-3dfc-49da-a3aa-c840fdb0308f Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6fbf76f1-e41e-438d-8770-286a115b7985 + - 106e23fa-d9db-4faf-a779-bffa5ff1098f status: 202 Accepted code: 202 - duration: 214.465913ms - - id: 125 + duration: 182.32587ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -4192,29 +1999,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1946 - body: '{"server": {"id": "696945eb-5bdf-4380-9662-d734ff70dcdf", "name": "tf-acc-server-basic-replaced", "arch": "x86_64", "commercial_type": "DEV1-M", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic-replaced", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "fc007b52-b5de-496d-81f5-50805630df33", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:44:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T09:25:28.179930+00:00", "modification_date": "2026-02-24T09:25:35.922931+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "19", "hypervisor_id": "702", "node_id": "38"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "696945eb-5bdf-4380-9662-d734ff70dcdf.pub.instances.scw.cloud"}}' + content_length: 2394 + body: '{"server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-basic", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "f51744b4-c534-4e78-834f-d9101392833b", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "651a1a88-276a-4b2b-8004-7d74549d6457", "name": "tf-acc-server-basic"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:20.628272+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "basic"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:5b:5d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:49:20.628272+00:00", "modification_date": "2026-02-24T12:49:37.858234+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "48", "hypervisor_id": "501", "node_id": "10"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "651a1a88-276a-4b2b-8004-7d74549d6457.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1946" + - "2394" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:36 GMT + - Tue, 24 Feb 2026 12:49:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3191a063-d760-4ab4-9270-49d4a35dc182 + - 0b4a98d9-e1a7-4836-a33f-1a0d56138c85 status: 200 OK code: 200 - duration: 118.46684ms - - id: 126 + duration: 72.497692ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -4224,29 +2031,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "696945eb-5bdf-4380-9662-d734ff70dcdf"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "651a1a88-276a-4b2b-8004-7d74549d6457"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:41 GMT + - Tue, 24 Feb 2026 12:49:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 19246266-2baa-4e54-8c2c-0ebc83e13ac0 + - 90cc6171-9fad-4b2b-b22a-b2a032ea81b3 status: 404 Not Found code: 404 - duration: 54.783459ms - - id: 127 + duration: 42.052327ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -4256,29 +2063,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f51744b4-c534-4e78-834f-d9101392833b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "fc007b52-b5de-496d-81f5-50805630df33"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f51744b4-c534-4e78-834f-d9101392833b"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:41 GMT + - Tue, 24 Feb 2026 12:49:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4bf36c5a-98ee-4f5a-9b61-a47441b3ebb8 + - ef09a54f-48c8-4092-9ac8-7b9878ac396f status: 404 Not Found code: 404 - duration: 34.520532ms - - id: 128 + duration: 26.688875ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -4288,59 +2095,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f51744b4-c534-4e78-834f-d9101392833b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 498 - body: '{"id":"fc007b52-b5de-496d-81f5-50805630df33", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T09:25:28.324597Z", "updated_at":"2026-02-24T09:25:37.275875Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-24T09:25:37.275875Z", "zone":"fr-par-1"}' + content_length: 127 + body: '{"message":"resource is not found","resource":"volume","resource_id":"f51744b4-c534-4e78-834f-d9101392833b","type":"not_found"}' headers: Content-Length: - - "498" - Content-Type: - - application/json - Date: - - Tue, 24 Feb 2026 09:25:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 217ad4e2-197a-409c-b77e-cf38540d78b9 - status: 200 OK - code: 200 - duration: 48.489298ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fc007b52-b5de-496d-81f5-50805630df33 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: + - "127" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:41 GMT + - Tue, 24 Feb 2026 12:49:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3a700a5c-95a3-4c6f-abef-44d3c74e9565 - status: 204 No Content - code: 204 - duration: 94.298753ms - - id: 130 + - 9294afab-940c-424a-b0be-12938a358cca + status: 404 Not Found + code: 404 + duration: 23.520319ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -4350,25 +2127,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/696945eb-5bdf-4380-9662-d734ff70dcdf + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/651a1a88-276a-4b2b-8004-7d74549d6457 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "696945eb-5bdf-4380-9662-d734ff70dcdf"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "651a1a88-276a-4b2b-8004-7d74549d6457"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 09:25:41 GMT + - Tue, 24 Feb 2026 12:49:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9397da1c-ca74-4455-aa9e-c5c30488dfc2 + - b544b763-8ede-4d88-9213-9ee1bc09e848 status: 404 Not Found code: 404 - duration: 93.748477ms + duration: 50.854385ms diff --git a/internal/services/instance/testdata/server-minimal.cassette.yaml b/internal/services/instance/testdata/server-minimal.cassette.yaml index 6ec48d203a..b3e94cf6ea 100644 --- a/internal/services/instance/testdata/server-minimal.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal.cassette.yaml @@ -28,18 +28,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:40 GMT + - Tue, 24 Feb 2026 12:41:44 GMT Link: - ; rel="next",; rel="last" Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8ecd2eb4-0c32-4d66-a1a7-6bec1aba26f6 + - b2c7e284-fb22-4181-8f78-786e16debf18 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 72.244413ms + duration: 73.31799ms - id: 1 request: proto: HTTP/1.1 @@ -67,18 +67,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:40 GMT + - Tue, 24 Feb 2026 12:41:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 53ccf88a-3a17-45d9-998c-c52b91ca5c0a + - 8a6b8b98-1665-4237-a915-0247d657f38d X-Total-Count: - "76" status: 200 OK code: 200 - duration: 26.949902ms + duration: 36.320786ms - id: 2 request: proto: HTTP/1.1 @@ -112,14 +112,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:40 GMT + - Tue, 24 Feb 2026 12:41:44 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a9e3c492-d6d4-45e6-a510-f5bd98e17075 + - b4e80ee1-8ef6-49eb-977a-fad683bde060 status: 200 OK code: 200 - duration: 50.494287ms + duration: 52.445484ms - id: 3 request: proto: HTTP/1.1 @@ -140,23 +140,23 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:40.899148+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:41 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 0bb8e1ba-7243-4c4f-a218-545157b79cfd + - 3dfcf967-add0-48e4-a66c-49cfcebb5c52 status: 201 Created code: 201 - duration: 826.849915ms + duration: 466.536541ms - id: 4 request: proto: HTTP/1.1 @@ -167,28 +167,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:40.899148+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:41 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 86fd311e-387d-43f8-b146-1bd3fd9aae08 + - b42ee6bf-b75d-4bd3-bdee-283970e4f526 status: 200 OK code: 200 - duration: 107.965112ms + duration: 114.070379ms - id: 5 request: proto: HTTP/1.1 @@ -199,28 +199,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:40.899148+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:41 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 20f57db4-8f08-413d-bbba-0edec0c2ec4d + - 242de2fa-8ef7-47c0-a06e-37711398dd5f status: 200 OK code: 200 - duration: 103.240794ms + duration: 98.954523ms - id: 6 request: proto: HTTP/1.1 @@ -231,28 +231,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"a9182181-0c67-401d-a8db-7af8636d13ad", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:10:41.091083Z", "updated_at":"2026-02-23T17:10:41.091083Z", "references":[{"id":"a16903ea-cd80-4151-804a-2a2d8b6026c8", "product_resource_type":"instance_server", "product_resource_id":"91123212-73ee-4f8d-b676-a881ae7903e4", "created_at":"2026-02-23T17:10:41.091083Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:41 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 297b3cf9-f569-460d-9ea5-7a2a2032ed58 + - e92290bf-7ed6-4b15-bfc7-dfdea9f214a6 status: 200 OK code: 200 - duration: 45.904033ms + duration: 36.289827ms - id: 7 request: proto: HTTP/1.1 @@ -266,30 +266,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "adb955f7-fb98-4eea-9a3a-c83fdc8cd533", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/91123212-73ee-4f8d-b676-a881ae7903e4/action", "href_result": "/servers/91123212-73ee-4f8d-b676-a881ae7903e4", "started_at": "2026-02-23T17:10:42.067351+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "cbaecb17-4c55-4e22-b6f3-453790d7ffd0", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action", "href_result": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594", "started_at": "2026-02-24T12:41:45.517005+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:42 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/adb955f7-fb98-4eea-9a3a-c83fdc8cd533 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cbaecb17-4c55-4e22-b6f3-453790d7ffd0 Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 08d57667-9859-4250-b802-926177b38a21 + - 8d0db813-0e44-41ed-9303-956ec2cd4fab status: 202 Accepted code: 202 - duration: 225.969165ms + duration: 264.076771ms - id: 8 request: proto: HTTP/1.1 @@ -300,28 +300,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1886 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:41.893997+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:45.314378+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - "1886" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:42 GMT + - Tue, 24 Feb 2026 12:41:45 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6efb3bc2-a8e8-41d2-9297-350c6e0b1817 + - bf197626-02ab-49bc-9828-5c60f11cbc4b status: 200 OK code: 200 - duration: 96.617162ms + duration: 106.801854ms - id: 9 request: proto: HTTP/1.1 @@ -332,28 +332,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - f54b2f00-6a82-485f-887f-99bd9b29b977 + - 59f296b0-9444-42e4-a59d-4b409ff97264 status: 200 OK code: 200 - duration: 110.550482ms + duration: 87.740306ms - id: 10 request: proto: HTTP/1.1 @@ -364,28 +364,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2047ffed-eb3a-4405-9067-5e39c5ace949 + - d8b3ffbe-504f-4d24-8c1c-0a8177c46f10 status: 200 OK code: 200 - duration: 99.13661ms + duration: 98.60046ms - id: 11 request: proto: HTTP/1.1 @@ -396,28 +396,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a9182181-0c67-401d-a8db-7af8636d13ad"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - aa243c56-30a0-451b-8ece-1ffd158ac394 + - 6bb3209a-ea10-4af7-b139-01853a1bfaf8 status: 404 Not Found code: 404 - duration: 28.787526ms + duration: 32.595868ms - id: 12 request: proto: HTTP/1.1 @@ -428,28 +428,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"a9182181-0c67-401d-a8db-7af8636d13ad", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:10:41.091083Z", "updated_at":"2026-02-23T17:10:41.091083Z", "references":[{"id":"a16903ea-cd80-4151-804a-2a2d8b6026c8", "product_resource_type":"instance_server", "product_resource_id":"91123212-73ee-4f8d-b676-a881ae7903e4", "created_at":"2026-02-23T17:10:41.091083Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7d0268b2-d483-4fee-96a1-f46e65c7a848 + - 41f23c34-a8d7-4549-a5a3-762d1bf2e9bb status: 200 OK code: 200 - duration: 54.149892ms + duration: 52.766056ms - id: 13 request: proto: HTTP/1.1 @@ -460,7 +460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/user_data method: GET response: proto: HTTP/2.0 @@ -474,14 +474,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:50 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a7bd26ae-1414-4936-bb2e-ea2442c6f0d0 + - ed7d1c5f-f771-4894-90fd-01edaedd7a9d status: 200 OK code: 200 - duration: 71.348858ms + duration: 48.721099ms - id: 14 request: proto: HTTP/1.1 @@ -492,7 +492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/private_nics method: GET response: proto: HTTP/2.0 @@ -506,18 +506,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 760ee14b-b0ba-45a6-9293-043e0af07345 + - 2d48c0d2-261b-40e8-9c4e-a3d44948fc20 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.576821ms + duration: 57.374712ms - id: 15 request: proto: HTTP/1.1 @@ -528,28 +528,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:47 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4de10051-3553-4145-a1cc-c4e3d9cd6ea7 + - 17bd059c-c919-4a56-a1bd-ca73e7b5ec96 status: 200 OK code: 200 - duration: 79.797606ms + duration: 102.17742ms - id: 16 request: proto: HTTP/1.1 @@ -560,28 +560,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 38d3b37f-7d14-4794-92de-612602e559e8 + - cd353e02-e6a8-49d3-b1e6-c9986790617c status: 200 OK code: 200 - duration: 95.681606ms + duration: 116.969508ms - id: 17 request: proto: HTTP/1.1 @@ -592,28 +592,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a9182181-0c67-401d-a8db-7af8636d13ad"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 94d900b5-59e9-4638-a621-b0d6b7e99a15 + - cf8bd0d7-8844-48ce-8e39-eb75ea3990ff status: 404 Not Found code: 404 - duration: 27.358632ms + duration: 27.134163ms - id: 18 request: proto: HTTP/1.1 @@ -624,28 +624,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"a9182181-0c67-401d-a8db-7af8636d13ad", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:10:41.091083Z", "updated_at":"2026-02-23T17:10:41.091083Z", "references":[{"id":"a16903ea-cd80-4151-804a-2a2d8b6026c8", "product_resource_type":"instance_server", "product_resource_id":"91123212-73ee-4f8d-b676-a881ae7903e4", "created_at":"2026-02-23T17:10:41.091083Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c3c297eb-f013-43eb-9833-2e0b90b6fdb4 + - 5cc15937-894c-4396-ae14-ddc15d53ec6c status: 200 OK code: 200 - duration: 34.523131ms + duration: 45.357168ms - id: 19 request: proto: HTTP/1.1 @@ -656,7 +656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/user_data method: GET response: proto: HTTP/2.0 @@ -670,14 +670,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 108aaf72-fed3-441f-940b-84c3908609f1 + - c78b6123-2f13-4773-b02d-e8a57c52aee1 status: 200 OK code: 200 - duration: 80.229859ms + duration: 55.883665ms - id: 20 request: proto: HTTP/1.1 @@ -688,7 +688,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/private_nics method: GET response: proto: HTTP/2.0 @@ -702,18 +702,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6bc27881-7c0f-4af3-bb1b-e86d41d0edf2 + - a4455738-6b24-4340-aecc-28944d4b5287 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 71.318931ms + duration: 49.38838ms - id: 21 request: proto: HTTP/1.1 @@ -724,28 +724,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - da993b0d-64a2-4121-b567-8dba17fbc213 + - d892e1e8-b6a3-4ab7-9cf8-4c1876f3dafc status: 200 OK code: 200 - duration: 83.293898ms + duration: 90.853927ms - id: 22 request: proto: HTTP/1.1 @@ -756,28 +756,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2021 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:44.650607+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 2020 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2021" + - "2020" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - bed127c2-ec00-490e-904e-ca7421fba6e1 + - fd137c84-44fc-44a1-9caf-0118f5b84709 status: 200 OK code: 200 - duration: 95.985585ms + duration: 91.554532ms - id: 23 request: proto: HTTP/1.1 @@ -791,30 +791,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "f4b4c2d5-f5b2-40e8-997a-52c1abcb8b53", "description": "server_terminate", "status": "pending", "href_from": "/servers/91123212-73ee-4f8d-b676-a881ae7903e4/action", "href_result": "/servers/91123212-73ee-4f8d-b676-a881ae7903e4", "started_at": "2026-02-23T17:10:48.852353+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "cb4d1453-dee6-475a-bd27-018c348e49ef", "description": "server_terminate", "status": "pending", "href_from": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action", "href_result": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594", "started_at": "2026-02-24T12:41:52.263923+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f4b4c2d5-f5b2-40e8-997a-52c1abcb8b53 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cb4d1453-dee6-475a-bd27-018c348e49ef Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3d909c55-b616-462f-a76e-5f622fc42ff7 + - b0316424-0f76-4bc6-b798-b45aa5e531c1 status: 202 Accepted code: 202 - duration: 178.731991ms + duration: 226.617934ms - id: 24 request: proto: HTTP/1.1 @@ -825,28 +825,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1984 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:48.725961+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' + content_length: 1983 + body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:52.132111+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1984" + - "1983" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:10:48 GMT + - Tue, 24 Feb 2026 12:41:52 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - d0c85c9b-2701-4c00-a005-7d8a7fc5fd39 + - 691799c9-79c2-4280-a2e5-6487d7f0c94f status: 200 OK code: 200 - duration: 90.060629ms + duration: 80.598479ms - id: 25 request: proto: HTTP/1.1 @@ -857,93 +857,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1984 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:48.725961+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1984" - Content-Type: - - application/json - Date: - - Mon, 23 Feb 2026 17:10:54 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - X-Request-Id: - - df50f479-e3c5-4e9f-8014-1c2f5f897bf7 - status: 200 OK - code: 200 - duration: 114.080339ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1984 - body: '{"server": {"id": "91123212-73ee-4f8d-b676-a881ae7903e4", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "a9182181-0c67-401d-a8db-7af8636d13ad", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:07:c5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:10:40.899148+00:00", "modification_date": "2026-02-23T17:10:48.725961+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "35", "hypervisor_id": "2002", "node_id": "39"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "91123212-73ee-4f8d-b676-a881ae7903e4.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "1984" - Content-Type: - - application/json - Date: - - Mon, 23 Feb 2026 17:10:59 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - X-Request-Id: - - a1c73647-e300-4c26-92ec-2c039400e798 - status: 200 OK - code: 200 - duration: 118.078421ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "91123212-73ee-4f8d-b676-a881ae7903e4"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "393ec65d-8f92-4164-a797-4e3e5f834594"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:11:04 GMT + - Tue, 24 Feb 2026 12:41:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 487c7e3a-6d69-4f1d-81a3-3d4e305119e9 + - 13457f03-ce84-46d4-a305-d8d1f8f7f934 status: 404 Not Found code: 404 - duration: 49.773062ms - - id: 28 + duration: 59.627118ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -953,29 +889,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a9182181-0c67-401d-a8db-7af8636d13ad"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:11:04 GMT + - Tue, 24 Feb 2026 12:41:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - eb8eba7d-a2af-4dbd-8535-85f93718e52a + - 58799ffc-1cd8-438d-b711-285d1d61e511 status: 404 Not Found code: 404 - duration: 29.869305ms - - id: 29 + duration: 38.86547ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -985,29 +921,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 494 - body: '{"id":"a9182181-0c67-401d-a8db-7af8636d13ad", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:10:41.091083Z", "updated_at":"2026-02-23T17:11:00.057561Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-23T17:11:00.057561Z", "zone":"fr-par-1"}' + body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:53.557209Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-24T12:41:53.557209Z", "zone":"fr-par-1"}' headers: Content-Length: - "494" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:11:04 GMT + - Tue, 24 Feb 2026 12:41:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 361e26a0-0499-440a-8b3d-3722f87ac023 + - 4f5725ee-997b-4316-8a6d-a3447a653290 status: 200 OK code: 200 - duration: 69.198155ms - - id: 30 + duration: 51.210188ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1017,7 +953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9182181-0c67-401d-a8db-7af8636d13ad + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d method: DELETE response: proto: HTTP/2.0 @@ -1029,15 +965,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:11:04 GMT + - Tue, 24 Feb 2026 12:41:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 245e2a59-61bd-4b41-8a50-e1408037af63 + - 3b39df05-dc09-4868-b872-88fd4ccaa39e status: 204 No Content code: 204 - duration: 88.737002ms - - id: 31 + duration: 110.621462ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1047,25 +983,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/91123212-73ee-4f8d-b676-a881ae7903e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "91123212-73ee-4f8d-b676-a881ae7903e4"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "393ec65d-8f92-4164-a797-4e3e5f834594"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:11:04 GMT + - Tue, 24 Feb 2026 12:41:57 GMT Server: - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 167c17aa-2db2-49a8-be1f-08cd7b282f08 + - 38665ca1-7b50-4d9d-b129-396411eff3a2 status: 404 Not Found code: 404 - duration: 50.622759ms + duration: 47.860415ms diff --git a/internal/services/instance/testdata/server-root-volume-from-image-block.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-image-block.cassette.yaml index 5171ad18f3..1668658860 100644 --- a/internal/services/instance/testdata/server-root-volume-from-image-block.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-image-block.cassette.yaml @@ -28,18 +28,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:14 GMT + - Tue, 24 Feb 2026 11:21:34 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e13a90ed-1921-46a9-97b0-c868a100ba59 + - 70426330-0f48-41d0-ba78-34206df14f4b X-Total-Count: - "76" status: 200 OK code: 200 - duration: 70.251973ms + duration: 2.207730729s - id: 1 request: proto: HTTP/1.1 @@ -67,18 +67,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:14 GMT + - Tue, 24 Feb 2026 11:21:34 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 19f50fbf-bfba-475f-8e2f-09f83091fc8d + - de89af04-d45f-42d6-97cc-c38f14e84faf X-Total-Count: - "76" status: 200 OK code: 200 - duration: 38.089915ms + duration: 48.972529ms - id: 2 request: proto: HTTP/1.1 @@ -112,14 +112,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:14 GMT + - Tue, 24 Feb 2026 11:21:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 0409864c-a9f6-4167-83ba-fc175aa63109 + - 265fbd1d-1dca-43e0-945b-4ea885b8d30e status: 200 OK code: 200 - duration: 59.941959ms + duration: 117.61901ms - id: 3 request: proto: HTTP/1.1 @@ -140,23 +140,23 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 1927 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:14.235527+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:34.574589+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "1927" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:14 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 6327b347-66a7-4cfa-97d7-55e001633b78 + - e0cc8df8-2927-4fac-a6d1-ccbbf5010348 status: 201 Created code: 201 - duration: 775.442321ms + duration: 498.842581ms - id: 4 request: proto: HTTP/1.1 @@ -167,28 +167,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1927 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:14.235527+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:34.574589+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "1927" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 5d78e3c9-5bc0-4a58-9e93-2883deafd666 + - b4e2ec9f-6aca-4e0c-a2c0-7b4376bbf4b4 status: 200 OK code: 200 - duration: 101.246718ms + duration: 213.566478ms - id: 5 request: proto: HTTP/1.1 @@ -199,28 +199,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1927 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:14.235527+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:34.574589+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "1927" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - ee22d29a-f302-4c0f-a5eb-71ed5420acc8 + - 4546ec6d-26be-4776-87b1-448a19528456 status: 200 OK code: 200 - duration: 119.17741ms + duration: 98.369437ms - id: 6 request: proto: HTTP/1.1 @@ -234,28 +234,28 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:14.395896Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:34.729891Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 1e40cb46-3051-42ed-bc51-f964330dc02a + - 9786f38c-5480-4663-b0fb-1dc46c9ecaf5 status: 200 OK code: 200 - duration: 83.921665ms + duration: 66.679326ms - id: 7 request: proto: HTTP/1.1 @@ -266,28 +266,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 8339986a-4ba6-4bc7-8592-318f3c0d07b0 + - 58b1cb8c-37e9-4f99-8bd4-bf06df60f6c7 status: 404 Not Found code: 404 - duration: 38.265995ms + duration: 27.834068ms - id: 8 request: proto: HTTP/1.1 @@ -298,28 +298,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:14.395896Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:34.729891Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 0cbacd9a-77d8-4633-b631-9157db4b1173 + - a53c01a8-7c84-4cbd-a829-eeefd09d3edd status: 200 OK code: 200 - duration: 62.858693ms + duration: 56.043701ms - id: 9 request: proto: HTTP/1.1 @@ -333,28 +333,28 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e13bfdd1-1427-4aa3-8765-18d45075a2c1 + - d8726bf3-d9a0-4864-a771-6119d6e478d7 status: 200 OK code: 200 - duration: 67.95266ms + duration: 81.931703ms - id: 10 request: proto: HTTP/1.1 @@ -365,28 +365,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1927 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:14.235527+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:34.574589+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "1927" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 04392b4b-3f74-4fed-afaa-7bd8833ee151 + - ce7a7ad8-2c57-4c87-a790-da7aa23a5323 status: 200 OK code: 200 - duration: 89.4295ms + duration: 103.04591ms - id: 11 request: proto: HTTP/1.1 @@ -397,28 +397,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - bf90a220-0036-45d2-bf44-7c70f53059ca + - a3905444-5449-44e8-a779-0b10a47571cc status: 200 OK code: 200 - duration: 38.919855ms + duration: 56.446136ms - id: 12 request: proto: HTTP/1.1 @@ -432,30 +432,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "b47a8922-d45a-4b53-b8a6-834a91ae0343", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/action", "href_result": "/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c", "started_at": "2026-02-23T16:16:15.746669+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "a13b562b-f25e-47df-8ebe-6abe23bdcb8f", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/a063f553-30d6-4fc7-8e40-df7715477492/action", "href_result": "/servers/a063f553-30d6-4fc7-8e40-df7715477492", "started_at": "2026-02-24T11:21:36.290290+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b47a8922-d45a-4b53-b8a6-834a91ae0343 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a13b562b-f25e-47df-8ebe-6abe23bdcb8f Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e32b4d4b-e031-47ca-9e9b-3b6f5764f20a + - 0e38a029-a06f-4f46-95ca-d28d3b524cd0 status: 202 Accepted code: 202 - duration: 240.308644ms + duration: 607.188656ms - id: 13 request: proto: HTTP/1.1 @@ -466,28 +466,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1949 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:15.556966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:35.750094+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "1949" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:15 GMT + - Tue, 24 Feb 2026 11:21:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 51a35e5e-d80c-4d64-b41e-cef9e83aebab + - 62258993-f1eb-41b3-9cfe-0b663434b70b status: 200 OK code: 200 - duration: 117.45403ms + duration: 93.383572ms - id: 14 request: proto: HTTP/1.1 @@ -498,28 +498,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 386fd47d-3389-4778-b38c-e6b316151ea8 + - 8401de01-2594-41b6-926d-17f74756a49e status: 200 OK code: 200 - duration: 107.221812ms + duration: 79.314468ms - id: 15 request: proto: HTTP/1.1 @@ -530,28 +530,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 428d55e9-05eb-426a-ab73-3da15009420d + - 8f9a419f-7880-4710-a3b2-92693fce578b status: 200 OK code: 200 - duration: 97.415184ms + duration: 81.366092ms - id: 16 request: proto: HTTP/1.1 @@ -562,28 +562,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 24eaebe1-5bdd-4692-af66-99e2a48a56e0 + - 126e105d-3914-4a10-a626-4c58e856ef99 status: 404 Not Found code: 404 - duration: 31.865872ms + duration: 29.226263ms - id: 17 request: proto: HTTP/1.1 @@ -594,28 +594,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - a8997dc6-537e-47f1-8bea-af88904d08c6 + - 4f3ca8d2-8817-4a68-9a48-5fd1c08a620a status: 200 OK code: 200 - duration: 48.44333ms + duration: 45.907172ms - id: 18 request: proto: HTTP/1.1 @@ -626,7 +626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/user_data method: GET response: proto: HTTP/2.0 @@ -640,14 +640,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - f8d98305-f7da-4eaf-9ea9-5052a875aa70 + - 198d6e51-d426-4bf2-8327-13145f687c42 status: 200 OK code: 200 - duration: 45.121424ms + duration: 51.095978ms - id: 19 request: proto: HTTP/1.1 @@ -658,7 +658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/private_nics method: GET response: proto: HTTP/2.0 @@ -672,18 +672,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - d434cce4-96a8-4550-be77-a403b6a5563c + - 2cf08d5a-f863-4889-908e-b78e7b904b02 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.155691ms + duration: 56.77251ms - id: 20 request: proto: HTTP/1.1 @@ -694,28 +694,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - ab195ed1-f5a1-40d8-807b-45f2055cc314 + - f91bc98a-e9d3-47c6-94a2-052404fb88b1 status: 200 OK code: 200 - duration: 81.671334ms + duration: 82.985093ms - id: 21 request: proto: HTTP/1.1 @@ -726,28 +726,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 043cf68b-f11f-495b-8f56-c091b894cedb + - d1e4e3fb-b69b-4f7a-aaf6-fc5081f54744 status: 200 OK code: 200 - duration: 87.176303ms + duration: 90.663443ms - id: 22 request: proto: HTTP/1.1 @@ -758,28 +758,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 1f278fff-b014-4b79-8a8d-5649f1b80c5b + - 833b06eb-fbdc-4dd2-b6ef-47ce2a1d533d status: 404 Not Found code: 404 - duration: 29.873206ms + duration: 33.310854ms - id: 23 request: proto: HTTP/1.1 @@ -790,28 +790,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e0149c67-3d3b-4bbd-97f1-27a242ac617d + - 0fd95403-c048-4e33-975f-5b6c9dcbdee0 status: 200 OK code: 200 - duration: 50.402604ms + duration: 36.304286ms - id: 24 request: proto: HTTP/1.1 @@ -822,7 +822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/user_data method: GET response: proto: HTTP/2.0 @@ -836,14 +836,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 1b1d0d73-9639-4845-aecc-61a711369587 + - 664622fe-b5f1-4237-9d40-868fb21b795e status: 200 OK code: 200 - duration: 55.286696ms + duration: 54.576225ms - id: 25 request: proto: HTTP/1.1 @@ -854,7 +854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/private_nics method: GET response: proto: HTTP/2.0 @@ -868,18 +868,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:21 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - c056a367-f927-4140-84ed-453a2849da78 + - 13b81edc-3695-430a-9701-99336d225c27 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.683844ms + duration: 55.658718ms - id: 26 request: proto: HTTP/1.1 @@ -890,28 +890,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 820f44e9-dfc6-43c2-8d96-f496d292cde3 + - e502f1f5-204a-4f20-837e-f80f0750bb91 status: 200 OK code: 200 - duration: 97.897411ms + duration: 94.307909ms - id: 27 request: proto: HTTP/1.1 @@ -922,28 +922,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 872c46c2-356b-46cb-865b-27fc1ef26af8 + - a4196017-e6cb-43dc-9eeb-fc6b7b488361 status: 404 Not Found code: 404 - duration: 113.336398ms + duration: 26.517926ms - id: 28 request: proto: HTTP/1.1 @@ -954,28 +954,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 4099b7df-fe81-49eb-b5e3-c8d4e3fd7365 + - 30e4931e-de0d-4543-bffc-33b4e01287b9 status: 200 OK code: 200 - duration: 52.853421ms + duration: 37.576486ms - id: 29 request: proto: HTTP/1.1 @@ -986,7 +986,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/user_data method: GET response: proto: HTTP/2.0 @@ -1000,14 +1000,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 42400379-5045-4fa2-90cd-5f049db74040 + - 05ce74aa-afa9-4c72-8009-9ea4fb70db13 status: 200 OK code: 200 - duration: 51.653406ms + duration: 54.781611ms - id: 30 request: proto: HTTP/1.1 @@ -1018,7 +1018,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/private_nics method: GET response: proto: HTTP/2.0 @@ -1032,18 +1032,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - fb7a8529-776d-4339-958d-9cb76203afa9 + - f61b02f4-398e-47e1-b733-8a5d8fc15354 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.893478ms + duration: 62.283641ms - id: 31 request: proto: HTTP/1.1 @@ -1054,28 +1054,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 607b02aa-aa0a-45c0-9af8-8b9228255caf + - fa600f34-0906-4d7b-8bee-4ebf8b1f030f status: 200 OK code: 200 - duration: 98.124718ms + duration: 85.288729ms - id: 32 request: proto: HTTP/1.1 @@ -1086,28 +1086,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - f0dbd2ef-8c5e-4418-8673-9b40c487d3d4 + - 479a1660-266b-4c71-a043-5c816ac6a315 status: 200 OK code: 200 - duration: 84.741056ms + duration: 106.457658ms - id: 33 request: proto: HTTP/1.1 @@ -1118,28 +1118,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 06d68fab-dd23-4a0a-a8de-8ee3e8685921 + - 10df029e-a5b9-4884-b287-bbea039b5213 status: 200 OK code: 200 - duration: 91.199137ms + duration: 96.969848ms - id: 34 request: proto: HTTP/1.1 @@ -1150,28 +1150,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - fc7c5c3b-3105-4dff-8c41-c97d93a7b230 + - 4797751a-45bf-4b48-b521-932cd38e9d19 status: 404 Not Found code: 404 - duration: 23.970828ms + duration: 50.154249ms - id: 35 request: proto: HTTP/1.1 @@ -1182,28 +1182,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 676 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "676" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:22 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 14d695dc-b1ad-4b41-ae74-96d12bacf190 + - a8f79669-575f-46fa-a795-d26a67fa8d38 status: 200 OK code: 200 - duration: 47.192459ms + duration: 58.519712ms - id: 36 request: proto: HTTP/1.1 @@ -1217,63 +1217,63 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 678 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:15.370057Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:35.510562Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "678" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 6e522bfd-05e6-4c69-bac5-46f3d6dcd92f + - 1c0b05b1-558a-4a32-9e15-90ae7db7d270 status: 200 OK code: 200 - duration: 105.213496ms + duration: 153.421625ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 110 + content_length: 103 host: api.scaleway.com - body: '{"volumes":{"0":{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74","boot":false,"name":"tf-vol-dreamy-archimedes"}}}' + body: '{"volumes":{"0":{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434","boot":false,"name":"tf-vol-funny-wing"}}}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2022 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "resizing", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "resizing", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2022" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - b5a0847f-fc80-4a2d-9659-f26f98d7e823 + - 01e4a5f8-1385-46bf-92f4-f5945384e7c8 status: 200 OK code: 200 - duration: 406.313195ms + duration: 377.711187ms - id: 38 request: proto: HTTP/1.1 @@ -1284,28 +1284,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2022 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "resizing", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "resizing", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": [], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2022" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 86c625a2-cef2-4de9-9cf0-fb46b74af49e + - ec338bc2-0208-42cd-802e-bc25de256ab8 status: 200 OK code: 200 - duration: 110.705673ms + duration: 93.034537ms - id: 39 request: proto: HTTP/1.1 @@ -1316,28 +1316,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 3bad2b38-aa74-42fc-b58a-662a3ac6d676 + - 0146ff7d-4398-430a-a258-7cf104670dae status: 200 OK code: 200 - duration: 80.250412ms + duration: 96.266528ms - id: 40 request: proto: HTTP/1.1 @@ -1351,28 +1351,28 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 678 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:23.014490Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:43.636896Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "678" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - fa653533-8873-4b70-8cdc-abd3f5cdf666 + - 3054652b-73ad-437a-aeb9-fa9c0c5fcd71 status: 200 OK code: 200 - duration: 110.48128ms + duration: 75.51905ms - id: 41 request: proto: HTTP/1.1 @@ -1383,28 +1383,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - bc1bf234-9fb1-4f41-a357-0e66bfe55351 + - ae1e5ffa-4a07-4ac7-b998-f5b6cbdc2f0f status: 404 Not Found code: 404 - duration: 25.023948ms + duration: 34.584717ms - id: 42 request: proto: HTTP/1.1 @@ -1415,28 +1415,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 678 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"named-volume", "type":"sbs_5k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:23.014490Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"named-volume", "type":"sbs_5k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:43.636896Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"updating", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "678" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 7571f75a-84d1-4b6d-bae4-81e1ae19814e + - c224e404-a1ee-4a32-9444-a52f199fbd64 status: 200 OK code: 200 - duration: 44.657783ms + duration: 49.083559ms - id: 43 request: proto: HTTP/1.1 @@ -1450,28 +1450,28 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 673 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:23.829825Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:44.413599Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "673" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 825d045a-f82c-497e-9ce6-adef62825141 + - e85971b7-e440-476e-96f8-f7d818afd91f status: 200 OK code: 200 - duration: 94.500645ms + duration: 81.735346ms - id: 44 request: proto: HTTP/1.1 @@ -1482,28 +1482,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:23 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 7724e7cc-2022-415b-8d52-b3105b6486a7 + - 8e16aeef-9615-4227-825a-f06c261166ef status: 200 OK code: 200 - duration: 86.887301ms + duration: 134.161051ms - id: 45 request: proto: HTTP/1.1 @@ -1514,28 +1514,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 6452149c-343f-45d5-96a3-0ab2298df763 + - ab2fb9f8-55bd-44bd-8edd-e9c42c92c809 status: 404 Not Found code: 404 - duration: 29.856996ms + duration: 36.233745ms - id: 46 request: proto: HTTP/1.1 @@ -1546,28 +1546,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 673 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:23.829825Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:44.413599Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "673" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 437922b3-bd03-427e-8346-99ce4b28577e + - 3560c2aa-9e86-4ed1-b445-3ea125e900df status: 200 OK code: 200 - duration: 43.976442ms + duration: 42.457303ms - id: 47 request: proto: HTTP/1.1 @@ -1578,7 +1578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/user_data method: GET response: proto: HTTP/2.0 @@ -1592,14 +1592,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 203610c8-3b40-4a72-8964-8fe8d1f40025 + - c86fc233-030c-4873-99c0-562e5c05580f status: 200 OK code: 200 - duration: 41.902402ms + duration: 44.848745ms - id: 48 request: proto: HTTP/1.1 @@ -1610,7 +1610,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/private_nics method: GET response: proto: HTTP/2.0 @@ -1624,18 +1624,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 8539e02f-3407-4dbe-a9ab-1201fd84e725 + - d87cf763-4bd6-4393-a1ae-8b7948105859 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.100406ms + duration: 53.577139ms - id: 49 request: proto: HTTP/1.1 @@ -1646,28 +1646,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - f97bed1e-b0d7-4272-ba9e-a439daa5d7f0 + - fa01f749-708e-404d-914a-ac4a1165dc58 status: 200 OK code: 200 - duration: 113.706965ms + duration: 88.764968ms - id: 50 request: proto: HTTP/1.1 @@ -1678,28 +1678,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 2a9fd90a-0f92-416c-872d-8937291ed9bb + - 075e7449-b356-441a-a7b1-f79c8ba60bd4 status: 200 OK code: 200 - duration: 95.813603ms + duration: 99.690047ms - id: 51 request: proto: HTTP/1.1 @@ -1710,28 +1710,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 81c51a20-504f-4955-9031-ee2c91c29d5c + - 9a687914-5354-418a-abc6-215bcdca2ff2 status: 404 Not Found code: 404 - duration: 22.158791ms + duration: 31.575415ms - id: 52 request: proto: HTTP/1.1 @@ -1742,28 +1742,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 673 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:23.829825Z", "references":[{"id":"349d77fb-ddbd-47e2-9d58-98fb927ae282", "product_resource_type":"instance_server", "product_resource_id":"012b38be-6b9c-4ec1-a9fc-72c656dc530c", "created_at":"2026-02-23T16:16:14.395896Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:44.413599Z", "references":[{"id":"0711cfb4-51f3-471d-8b63-8e9c6d445830", "product_resource_type":"instance_server", "product_resource_id":"a063f553-30d6-4fc7-8e40-df7715477492", "created_at":"2026-02-24T11:21:34.729891Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "673" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - d3afe2ad-5257-40db-a455-6a6816cf7af3 + - 9d4001ac-cd42-41a2-b057-f6bfd62b2101 status: 200 OK code: 200 - duration: 59.054481ms + duration: 44.38269ms - id: 53 request: proto: HTTP/1.1 @@ -1774,7 +1774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/user_data method: GET response: proto: HTTP/2.0 @@ -1788,14 +1788,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 7fd59bc7-0acd-4620-8039-ad362cb36dc5 + - 2e512aeb-0c22-4ab6-afcd-1b2acea75429 status: 200 OK code: 200 - duration: 48.931989ms + duration: 57.987763ms - id: 54 request: proto: HTTP/1.1 @@ -1806,7 +1806,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/private_nics method: GET response: proto: HTTP/2.0 @@ -1820,18 +1820,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:24 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - b6f40c73-cd64-4e89-a31b-99d737f6be51 + - 8998b5ab-2347-4e1b-9f03-a3e5fa2bc8d4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.546125ms + duration: 55.809592ms - id: 55 request: proto: HTTP/1.1 @@ -1842,28 +1842,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:25 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 59b72c48-74b9-4644-8e0b-fc1b487cc927 + - 865c485a-63b3-47f3-8146-5405170a3674 status: 200 OK code: 200 - duration: 84.470536ms + duration: 93.54671ms - id: 56 request: proto: HTTP/1.1 @@ -1874,28 +1874,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2083 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:17.982063+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:39.323021+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2083" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:25 GMT + - Tue, 24 Feb 2026 11:21:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - d2c882d3-a0d1-4e9e-9cd1-38d3591aa1be + - 32a43843-2944-4d7b-a3a7-23fe616991b2 status: 200 OK code: 200 - duration: 74.163859ms + duration: 102.201616ms - id: 57 request: proto: HTTP/1.1 @@ -1909,30 +1909,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "55978cd8-2912-4b2e-b4a7-b282286ad70a", "description": "server_terminate", "status": "pending", "href_from": "/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c/action", "href_result": "/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c", "started_at": "2026-02-23T16:16:25.554822+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "1d04db71-223c-4595-babf-70fa9481e7d4", "description": "server_terminate", "status": "pending", "href_from": "/servers/a063f553-30d6-4fc7-8e40-df7715477492/action", "href_result": "/servers/a063f553-30d6-4fc7-8e40-df7715477492", "started_at": "2026-02-24T11:21:46.106461+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:25 GMT + - Tue, 24 Feb 2026 11:21:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/55978cd8-2912-4b2e-b4a7-b282286ad70a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d04db71-223c-4595-babf-70fa9481e7d4 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - c9e6e347-ce84-420e-ab73-fdb9715446d2 + - 0ace7923-666a-479a-921c-f57e225f77ed status: 202 Accepted code: 202 - duration: 368.984914ms + duration: 206.478799ms - id: 58 request: proto: HTTP/1.1 @@ -1943,28 +1943,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2046 - body: '{"server": {"id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:2b", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:16:14.235527+00:00", "modification_date": "2026-02-23T16:16:25.248620+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "54", "hypervisor_id": "801", "node_id": "21"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "012b38be-6b9c-4ec1-a9fc-72c656dc530c.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "a063f553-30d6-4fc7-8e40-df7715477492", "name": "tf-acc-server-root-volume-from-image-block", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-block", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0ab7de69-48b2-4afe-b814-9a13bc200434", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_block"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:1f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:21:34.574589+00:00", "modification_date": "2026-02-24T11:21:45.955491+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "37", "hypervisor_id": "602", "node_id": "31"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "a063f553-30d6-4fc7-8e40-df7715477492.pub.instances.scw.cloud"}}' headers: Content-Length: - "2046" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:25 GMT + - Tue, 24 Feb 2026 11:21:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 96814d11-b692-4227-9cc7-07b6c6b1c3a9 + - 48403ec3-250b-4db8-8d8a-8b05beca5f10 status: 200 OK code: 200 - duration: 81.624996ms + duration: 90.584045ms - id: 59 request: proto: HTTP/1.1 @@ -1975,28 +1975,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a063f553-30d6-4fc7-8e40-df7715477492"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:30 GMT + - Tue, 24 Feb 2026 11:21:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e2699a4a-7110-40c4-a6eb-28ac57c68002 + - 449e35a3-a9e8-4956-a800-b572a9197b8d status: 404 Not Found code: 404 - duration: 52.424796ms + duration: 44.592429ms - id: 60 request: proto: HTTP/1.1 @@ -2007,28 +2007,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0ab7de69-48b2-4afe-b814-9a13bc200434"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:30 GMT + - Tue, 24 Feb 2026 11:21:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 1ef77582-ed3c-4cd1-bad1-84e3c860a8c2 + - 80a9c439-d1d3-441d-8268-efcb8bbee2bd status: 404 Not Found code: 404 - duration: 28.897722ms + duration: 30.014529ms - id: 61 request: proto: HTTP/1.1 @@ -2039,28 +2039,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 466 - body: '{"id":"9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T16:16:14.395896Z", "updated_at":"2026-02-23T16:16:26.610543Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":"2026-02-23T16:16:26.610543Z", "zone":"fr-par-1"}' + body: '{"id":"0ab7de69-48b2-4afe-b814-9a13bc200434", "name":"renamed", "type":"sbs_15k", "size":20000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T11:21:34.729891Z", "updated_at":"2026-02-24T11:21:47.351862Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":"2026-02-24T11:21:47.351862Z", "zone":"fr-par-1"}' headers: Content-Length: - "466" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:30 GMT + - Tue, 24 Feb 2026 11:21:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - e200511b-6a5b-42b1-8fbc-850a029581c4 + - 78716771-f6e1-4a82-bd41-fda4f916a491 status: 200 OK code: 200 - duration: 28.910406ms + duration: 45.322096ms - id: 62 request: proto: HTTP/1.1 @@ -2071,7 +2071,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9f63dcf1-28a1-4ddc-8fc6-5b7401e09d74 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0ab7de69-48b2-4afe-b814-9a13bc200434 method: DELETE response: proto: HTTP/2.0 @@ -2083,14 +2083,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:30 GMT + - Tue, 24 Feb 2026 11:21:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - 83ddd22c-7135-49d5-a5d9-7b8e2180e047 + - fb2501a5-304b-4e7f-9cbd-60a344bc3e7b status: 204 No Content code: 204 - duration: 87.005733ms + duration: 79.363585ms - id: 63 request: proto: HTTP/1.1 @@ -2101,25 +2101,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/012b38be-6b9c-4ec1-a9fc-72c656dc530c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a063f553-30d6-4fc7-8e40-df7715477492 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "012b38be-6b9c-4ec1-a9fc-72c656dc530c"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "a063f553-30d6-4fc7-8e40-df7715477492"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:16:30 GMT + - Tue, 24 Feb 2026 11:21:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) X-Request-Id: - - b0cc03cc-f028-41df-8e6c-499b9d8e0812 + - 737e3281-2917-476b-9d11-7cde0189d785 status: 404 Not Found code: 404 - duration: 55.165178ms + duration: 50.927014ms diff --git a/internal/services/instance/testdata/server-root-volume-from-image-local.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-image-local.cassette.yaml index f758cc6885..be87a57002 100644 --- a/internal/services/instance/testdata/server-root-volume-from-image-local.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-image-local.cassette.yaml @@ -28,18 +28,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:04 GMT + - Tue, 24 Feb 2026 11:22:01 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6465a179-fd1b-4771-bbe2-2165d129da1a + - dcd639e4-11d1-402e-8d54-3e0d91882005 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 77.62164ms + duration: 76.146048ms - id: 1 request: proto: HTTP/1.1 @@ -67,18 +67,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:04 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d9be8871-1f39-4e3b-adb2-4a48424a5774 + - dafdef93-166a-480d-ba88-69a33120e31e X-Total-Count: - "76" status: 200 OK code: 200 - duration: 58.107801ms + duration: 34.325053ms - id: 2 request: proto: HTTP/1.1 @@ -112,14 +112,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:04 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4b8c27da-f337-42a9-ac03-0ec5e0709dd8 + - b0b3773c-4eca-4ff9-84bf-f931a6fcd67c status: 200 OK code: 200 - duration: 54.231944ms + duration: 74.978889ms - id: 3 request: proto: HTTP/1.1 @@ -140,23 +140,23 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 2367 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - "2367" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:04 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 574d7a34-afa6-4208-b950-3e7743ea3704 + - 449f6ca1-29d4-4328-b133-44b365aab3cf status: 201 Created code: 201 - duration: 268.223788ms + duration: 284.988824ms - id: 4 request: proto: HTTP/1.1 @@ -167,28 +167,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2367 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - "2367" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3cd8e8d2-40d1-4a59-a947-6c253356205c + - 85989168-7e28-42f2-9a69-086c2e39f514 status: 200 OK code: 200 - duration: 103.772326ms + duration: 99.745502ms - id: 5 request: proto: HTTP/1.1 @@ -199,28 +199,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 542 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "542" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3d628db7-8cbc-4f4d-924f-b4c9365f0cc6 + - 50435256-7172-49c9-a0be-002ca3465746 status: 200 OK code: 200 - duration: 62.71823ms + duration: 60.413252ms - id: 6 request: proto: HTTP/1.1 @@ -234,28 +234,28 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 530 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "530" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5332c7dc-9ea3-4f89-a324-446d0921e5c7 + - b9db18c3-86d5-4429-939a-c91c3bbfc0da status: 200 OK code: 200 - duration: 82.40333ms + duration: 86.023716ms - id: 7 request: proto: HTTP/1.1 @@ -266,28 +266,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2355 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:04.796922+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.170863+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - "2355" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 99440d07-102b-44fc-8a47-99c29c4a8fb7 + - 1a8fbd7e-84c2-4468-9d82-f3ea20961836 status: 200 OK code: 200 - duration: 96.64171ms + duration: 81.736569ms - id: 8 request: proto: HTTP/1.1 @@ -301,30 +301,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "2ac8ffa8-5cb4-4006-8e27-447fa53c7ef5", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/20943637-eff5-4539-8b5a-bb6000291845/action", "href_result": "/servers/20943637-eff5-4539-8b5a-bb6000291845", "started_at": "2026-02-23T16:18:05.523720+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "36268964-b93f-424f-8b1f-9c0b5f787c9b", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/action", "href_result": "/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "started_at": "2026-02-24T11:22:03.000439+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2ac8ffa8-5cb4-4006-8e27-447fa53c7ef5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/36268964-b93f-424f-8b1f-9c0b5f787c9b Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3c4622b0-6c57-4df0-97f2-223287db4504 + - 0af1f1d1-34a6-4cb9-a9d7-6828812796aa status: 202 Accepted code: 202 - duration: 233.486988ms + duration: 538.949018ms - id: 9 request: proto: HTTP/1.1 @@ -335,28 +335,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2377 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.344848+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.762878+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - "2377" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:05 GMT + - Tue, 24 Feb 2026 11:22:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f2376a20-19bb-4f70-b17c-c5914b49e834 + - 2c01f4f5-ebb0-4fb0-b085-0aec0d821a45 status: 200 OK code: 200 - duration: 82.311498ms + duration: 77.589044ms - id: 10 request: proto: HTTP/1.1 @@ -367,28 +367,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2481 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.344848+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2480 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.762878+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2481" + - "2480" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:10 GMT + - Tue, 24 Feb 2026 11:22:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 516a025e-fd1f-4dff-bc38-9ec8bdde40ce + - d1d484e7-cc6f-441c-a097-c28fafc81241 status: 200 OK code: 200 - duration: 96.463164ms + duration: 99.618167ms - id: 11 request: proto: HTTP/1.1 @@ -399,28 +399,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2481 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.344848+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2481" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:15 GMT + - Tue, 24 Feb 2026 11:22:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4036fd7d-7a5d-447b-9733-91862a2ccc13 + - a591ddc1-c846-4f48-a9b4-dafc3f53f558 status: 200 OK code: 200 - duration: 90.648382ms + duration: 1.373454099s - id: 12 request: proto: HTTP/1.1 @@ -431,28 +431,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:20 GMT + - Tue, 24 Feb 2026 11:22:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a261becf-5043-476c-b980-333bee893e3a + - 85b061c9-b83a-41e0-9e5c-e7e1d542404b status: 200 OK code: 200 - duration: 68.376687ms + duration: 73.61596ms - id: 13 request: proto: HTTP/1.1 @@ -463,61 +463,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' - headers: - Content-Length: - - "2512" - Content-Type: - - application/json - Date: - - Mon, 23 Feb 2026 16:18:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - X-Request-Id: - - 6ed73c35-7976-4b29-a369-78dee54fc020 - status: 200 OK - code: 200 - duration: 87.389584ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 530 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "530" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9279019c-dace-4ccb-9656-936dd1ec4842 + - 17fe2460-f6ec-4726-befd-ac11f26c22e7 status: 200 OK code: 200 - duration: 66.38878ms - - id: 15 + duration: 58.370116ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -527,7 +495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -541,15 +509,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 66d72b13-0666-4897-98ea-e412684d32af + - 49f7ce9a-ce96-419f-b8ac-f7bcc92ae6dd status: 200 OK code: 200 - duration: 50.784933ms - - id: 16 + duration: 59.025094ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -559,7 +527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -573,19 +541,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2acf3487-d358-49c6-aef5-37ac9336774a + - b7ae3400-d79f-49ad-ac8e-0fc370609ee0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.357752ms - - id: 17 + duration: 49.340306ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -595,29 +563,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 731d7055-1106-4aac-8c18-6bd49f91adcb + - 5329ff30-989d-450d-961a-6e7bd5cbc6bf status: 200 OK code: 200 - duration: 96.011385ms - - id: 18 + duration: 87.56891ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -627,29 +595,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8a66be04-3555-43d9-b74d-8fa0f8c1c724 + - 8126c2a3-f7da-4ef7-b802-61abcc7572f0 status: 200 OK code: 200 - duration: 91.119257ms - - id: 19 + duration: 94.862415ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -659,29 +627,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 530 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "530" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 61505388-e16a-4e64-b97a-860c4918dad7 + - 8dd2af36-8aff-49c1-8a61-c292b0b3a395 status: 200 OK code: 200 - duration: 71.070022ms - - id: 20 + duration: 63.610982ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -691,7 +659,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -705,15 +673,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 41b40497-44bf-4240-9261-399eb279c7fb + - 17926490-a8ea-42dd-994b-7b107b0675a9 status: 200 OK code: 200 - duration: 44.901461ms - - id: 21 + duration: 49.965048ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -723,7 +691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -737,19 +705,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:21 GMT + - Tue, 24 Feb 2026 11:22:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 85a6d45f-0126-4a7b-9ed1-8f533487c419 + - 6effa407-492e-4ed5-91c6-ec82633f0e70 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.347109ms - - id: 22 + duration: 42.552941ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -759,29 +727,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6fda964b-353f-4bc5-b00f-5827f2ff6e6f + - 5d9b7751-8ac7-452e-ae26-223a24414dc9 status: 200 OK code: 200 - duration: 74.054693ms - - id: 23 + duration: 97.909277ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -791,29 +759,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 530 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "530" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 416cbc84-571c-4e1d-8806-a477f6dd3182 + - aafcb7f7-0ce0-495e-9f81-d129ef7d907a status: 200 OK code: 200 - duration: 68.910381ms - - id: 24 + duration: 67.611353ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -823,7 +791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -837,15 +805,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 372af0ce-b4bf-4d86-b158-e3b0df9e39b5 + - 7c9d9fd6-139a-441c-9ddd-20e646d8b432 status: 200 OK code: 200 - duration: 59.727026ms - - id: 25 + duration: 43.249908ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -855,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -869,19 +837,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e3c97a29-ec95-4af4-bcc1-507d248454bd + - 0c282067-8f84-44d0-bd33-6e2ab15ad595 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 43.117047ms - - id: 26 + duration: 43.96018ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -891,64 +859,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fa657f4f-2308-4fdf-b04d-89db8ee6d718 + - 9e3b7e5a-3bab-46f6-88b4-187a9c918850 status: 200 OK code: 200 - duration: 63.960825ms - - id: 27 + duration: 93.655423ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 106 host: api.scaleway.com - body: '{"volumes":{"0":{"id":"e6faf86c-5539-4c5e-9b4d-a4c8b29cf677","boot":false,"name":"tf-vol-sweet-galileo"}}}' + body: '{"volumes":{"0":{"id":"8c11b30d-06e2-4b04-8ead-01dc3266e2a7","boot":false,"name":"tf-vol-quirky-bhabha"}}}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2fdd7792-f3dd-408a-bc08-dae025b04529 + - 2369d713-bb82-4bb7-ae6b-d6011d0b7d77 status: 200 OK code: 200 - duration: 183.376594ms - - id: 28 + duration: 263.020302ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -958,29 +926,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2512 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2511 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2512" + - "2511" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0131891a-8cca-46b6-be83-34ad1cf830c6 + - 665aed4f-f455-4e6e-9e44-866027fe84db status: 200 OK code: 200 - duration: 84.119727ms - - id: 29 + duration: 73.260233ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -990,29 +958,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 530 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:05.164740+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "named-volume", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:02.579701+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "530" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4fcccf96-57b7-4894-a827-26e3cf6306e1 + - f35148a7-dc41-4bf1-9bf3-4d0cb41cb212 status: 200 OK code: 200 - duration: 58.742003ms - - id: 30 + duration: 58.167216ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1025,29 +993,29 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 525 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "525" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ceeb40d7-b732-47bd-8c49-2e76bc5b94a8 + - ee79c71c-7ea5-48f2-bcb1-fe1d4735300b status: 200 OK code: 200 - duration: 105.24726ms - - id: 31 + duration: 95.14229ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1057,29 +1025,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3eff22df-1d06-4a90-8613-dae357e548be + - 1e925269-7a26-47fc-a00a-a3dc74dc574c status: 200 OK code: 200 - duration: 82.886027ms - - id: 32 + duration: 83.792049ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1089,29 +1057,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 525 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "525" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a414f273-0dae-49ae-ab13-4f48fa0642be + - a938af2b-6c85-4f83-9699-626500d65bff status: 200 OK code: 200 - duration: 39.242592ms - - id: 33 + duration: 51.803255ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1121,7 +1089,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -1135,15 +1103,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:22 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 871f64cc-d6bb-4052-a416-eda17fec0384 + - e0d40acc-f61a-4675-950e-5cc1445ac0c7 status: 200 OK code: 200 - duration: 38.347188ms - - id: 34 + duration: 36.09801ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1153,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -1167,19 +1135,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fd979f8e-1cfa-441e-8ce9-baa2c2dc7a83 + - 156c1c8e-7266-4ac5-a3ea-9fea748f6bcc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 36.217394ms - - id: 35 + duration: 46.020874ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1189,29 +1157,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 654bf56c-b95b-4166-acac-38d272df3453 + - 583419b5-40e7-4428-81e5-965a1c7ee2bd status: 200 OK code: 200 - duration: 88.720937ms - - id: 36 + duration: 94.51184ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1221,29 +1189,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5cda3d90-b6ba-497d-a74a-be43adf031a5 + - 6787b2a4-d37e-41bb-b21e-13ef4bc24fcd status: 200 OK code: 200 - duration: 70.721797ms - - id: 37 + duration: 99.393621ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1253,29 +1221,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 525 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "525" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e0a3ec4b-9fbb-48b1-9dac-fea296c271d8 + - 815d589b-49db-45da-8004-29dd6b30f59b status: 200 OK code: 200 - duration: 71.824139ms - - id: 38 + duration: 46.460378ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1285,7 +1253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -1299,15 +1267,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e8b051ff-1448-4c35-b011-c0f3c1adb541 + - a3b800c7-56af-4804-a3cf-0d127853bdba status: 200 OK code: 200 - duration: 59.693311ms - - id: 39 + duration: 49.810329ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1317,7 +1285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -1331,19 +1299,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4f020d29-151c-40b8-938d-384af101e88a + - 7d5f567d-8ebc-449e-93c2-e28ba4a1b1da X-Total-Count: - "0" status: 200 OK code: 200 - duration: 70.336613ms - - id: 40 + duration: 61.828201ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1353,29 +1321,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3da342c5-9c5b-443c-b762-33378fe4b625 + - 126be651-4f54-49a2-88d6-976da71aa721 status: 200 OK code: 200 - duration: 69.256051ms - - id: 41 + duration: 75.979513ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1385,29 +1353,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 525 - body: '{"volume": {"id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "525" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - be792601-018a-43e8-ab2e-dbfb5c8ac4ea + - 79eece6f-d09a-4932-8691-8dd87b4d6b71 status: 200 OK code: 200 - duration: 63.710284ms - - id: 42 + duration: 53.620532ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1417,7 +1385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/user_data method: GET response: proto: HTTP/2.0 @@ -1431,15 +1399,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:23 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f0ec61d4-5809-4d60-a951-c9b5110bb957 + - cabaa959-f156-41dc-bd24-5ec423ef1153 status: 200 OK code: 200 - duration: 122.879571ms - - id: 43 + duration: 58.85668ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1449,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/private_nics method: GET response: proto: HTTP/2.0 @@ -1463,19 +1431,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e0eef939-e85d-46de-a3de-999ad512764c + - 887b9255-6ddd-4a91-900f-7de396d7c5e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.605124ms - - id: 44 + duration: 49.658334ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1485,29 +1453,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - da2d5e48-622a-4562-b781-3fb094dd9ef4 + - b10e23af-6744-48c1-a146-469728ee488b status: 200 OK code: 200 - duration: 74.554242ms - - id: 45 + duration: 68.878901ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1517,29 +1485,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - cf1e6374-f89b-4f1f-8091-7a0e25745fa5 + - b20f09fe-57ad-4298-a8c6-42b7e01bf128 status: 200 OK code: 200 - duration: 62.778703ms - - id: 46 + duration: 93.153613ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1549,29 +1517,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2507 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:16.470317+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2506 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:14.157980+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2507" + - "2506" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1a720eb1-d39c-40c9-af41-91dcb2d04b3d + - 3a51a38e-5835-4a3a-99b3-c8291c41b225 status: 200 OK code: 200 - duration: 85.468793ms - - id: 47 + duration: 115.160062ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1584,31 +1552,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "fd5f01be-14f6-4027-8d45-b57ce8746637", "description": "server_terminate", "status": "pending", "href_from": "/servers/20943637-eff5-4539-8b5a-bb6000291845/action", "href_result": "/servers/20943637-eff5-4539-8b5a-bb6000291845", "started_at": "2026-02-23T16:18:24.652314+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "b09e6e48-76cb-4492-ba5d-55687d2fa1e6", "description": "server_terminate", "status": "pending", "href_from": "/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4/action", "href_result": "/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "started_at": "2026-02-24T11:22:18.713809+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fd5f01be-14f6-4027-8d45-b57ce8746637 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b09e6e48-76cb-4492-ba5d-55687d2fa1e6 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 07d39293-bd3e-4c93-825d-11d623c7ffc5 + - 2ede779f-0568-4141-85ac-7c19100c493b status: 202 Accepted code: 202 - duration: 185.727724ms - - id: 48 + duration: 199.376009ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1618,29 +1586,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2470 - body: '{"server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "20943637-eff5-4539-8b5a-bb6000291845", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:22.733243+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:61", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:04.796922+00:00", "modification_date": "2026-02-23T16:18:24.520749+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "39", "hypervisor_id": "1301", "node_id": "22"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "20943637-eff5-4539-8b5a-bb6000291845.pub.instances.scw.cloud"}}' + content_length: 2469 + body: '{"server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7", "name": "renamed", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:16.843368+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:27", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:02.170863+00:00", "modification_date": "2026-02-24T11:22:18.574627+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "94", "hypervisor_id": "304", "node_id": "60"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2470" + - "2469" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:24 GMT + - Tue, 24 Feb 2026 11:22:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b0969623-cb1b-48c2-8dcf-8aaf9b60d56d + - 40ee13dc-3290-4e87-96f8-d8aa356f098a status: 200 OK code: 200 - duration: 88.883824ms - - id: 49 + duration: 87.264873ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1650,29 +1618,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20943637-eff5-4539-8b5a-bb6000291845 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34a32ed2-2ae2-43ab-b46c-7087c4b20ef4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "20943637-eff5-4539-8b5a-bb6000291845"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "34a32ed2-2ae2-43ab-b46c-7087c4b20ef4"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:29 GMT + - Tue, 24 Feb 2026 11:22:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 34e1d2a5-9687-4bb3-88e0-1d800478c0c4 + - 79175025-86e2-48be-a9f1-f1bc89a2ec0a status: 404 Not Found code: 404 - duration: 53.753594ms - - id: 50 + duration: 47.666571ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1682,29 +1650,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e6faf86c-5539-4c5e-9b4d-a4c8b29cf677"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8c11b30d-06e2-4b04-8ead-01dc3266e2a7"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:29 GMT + - Tue, 24 Feb 2026 11:22:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 18ad2aeb-dffa-45a4-9eb5-f12c0419e2b1 + - bad9c236-ec1d-48bd-8729-adb67095f11a status: 404 Not Found code: 404 - duration: 34.486167ms - - id: 51 + duration: 25.847742ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1714,29 +1682,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e6faf86c-5539-4c5e-9b4d-a4c8b29cf677 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8c11b30d-06e2-4b04-8ead-01dc3266e2a7 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 127 - body: '{"message":"resource is not found","resource":"volume","resource_id":"e6faf86c-5539-4c5e-9b4d-a4c8b29cf677","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"8c11b30d-06e2-4b04-8ead-01dc3266e2a7","type":"not_found"}' headers: Content-Length: - "127" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:29 GMT + - Tue, 24 Feb 2026 11:22:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ec803091-2e81-4398-a8e6-b787f26c0e63 + - 01121663-5cb8-46f0-b61d-e264de9b99c9 status: 404 Not Found code: 404 - duration: 23.581958ms - - id: 52 + duration: 17.732497ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1763,19 +1731,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:29 GMT + - Tue, 24 Feb 2026 11:22:23 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 228f0603-8f39-4c7a-b9c2-c7b907f1148e + - f0b2e402-ef78-4599-a307-3b56646ab456 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 41.093982ms - - id: 53 + duration: 42.662158ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1802,19 +1770,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:29 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9b2a9056-aa6e-41d5-9272-c952843381ef + - add23f5e-43c6-4840-9d2f-bb63faab0d86 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 33.547925ms - - id: 54 + duration: 72.111064ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1847,15 +1815,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 58cf932a-a91a-409c-a26f-2897d0fd8c12 + - 9ccb2748-0107-4fd6-a4ba-6e7479e7bebd status: 200 OK code: 200 - duration: 46.958418ms - - id: 55 + duration: 57.356389ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1875,24 +1843,24 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 2367 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2367" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 55491234-2371-4f4b-b180-cf8df9669c22 + - 4c6447b0-afe9-4119-af02-d4e977ea20a5 status: 201 Created code: 201 - duration: 274.855768ms - - id: 56 + duration: 253.870058ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1902,29 +1870,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2367 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2367" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 86d14032-bbcd-4bea-95a6-49be8dfedec3 + - 06fc7261-7869-4770-aca2-f044b8512e94 status: 200 OK code: 200 - duration: 76.233609ms - - id: 57 + duration: 90.831172ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1934,29 +1902,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2367 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2367" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c173ab83-4da5-465a-93ee-8fbe72cc0f53 + - a85fbf67-31a8-4e34-a203-43606b88ea33 status: 200 OK code: 200 - duration: 68.841812ms - - id: 58 + duration: 97.426627ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1969,31 +1937,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "bb2b2a23-6a8c-418c-8cbb-89e960499fc1", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/action", "href_result": "/servers/d128c581-c244-4e76-a99e-fabc3a066dc7", "started_at": "2026-02-23T16:18:30.636446+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "fb799cd1-c629-4cd4-ae8e-590fb4ce53cb", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/action", "href_result": "/servers/e570edc5-b5d6-4246-8f01-98d26a512b11", "started_at": "2026-02-24T11:22:24.811752+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb2b2a23-6a8c-418c-8cbb-89e960499fc1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fb799cd1-c629-4cd4-ae8e-590fb4ce53cb Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3d30891c-86e0-4cff-b270-d3f0f8ca6a04 + - 97108eb3-7718-4782-960c-18dc2766cf00 status: 202 Accepted code: 202 - duration: 215.279365ms - - id: 59 + duration: 268.739106ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2003,29 +1971,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2389 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.476423+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.621274+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2389" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:30 GMT + - Tue, 24 Feb 2026 11:22:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a03763e4-5e8f-4487-aaa4-88b2ba00852f + - 9f979083-ddc6-4074-b08f-644495cf4073 status: 200 OK code: 200 - duration: 79.295327ms - - id: 60 + duration: 70.353508ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2035,29 +2003,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2492 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.476423+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.621274+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2492" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:35 GMT + - Tue, 24 Feb 2026 11:22:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 582cf4c7-fb73-49bc-92eb-df1e3bb03593 + - 954de445-b12c-47de-a785-55772aa10231 status: 200 OK code: 200 - duration: 85.994923ms - - id: 61 + duration: 72.526935ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2067,29 +2035,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2492 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.476423+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.621274+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2492" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:40 GMT + - Tue, 24 Feb 2026 11:22:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b7da31b2-d339-4fa7-98a8-e06b3f90c9a1 + - 2c784aa4-0007-4049-815b-27576afd8afe status: 200 OK code: 200 - duration: 78.854768ms - - id: 62 + duration: 90.006833ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2099,29 +2067,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:45 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f7e629fa-bb25-47c6-97ea-f1efe86d0e3f + - cb212df2-83f7-43e5-b571-c5fbc1d6e22e status: 200 OK code: 200 - duration: 73.884584ms - - id: 63 + duration: 73.136242ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2131,29 +2099,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 94ff592a-d1bf-46e2-9a7f-9071e9448d3b + - cd7cb6d2-7ea1-4673-8884-ec07e6a4b50d status: 200 OK code: 200 - duration: 74.021551ms - - id: 64 + duration: 98.593174ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2163,29 +2131,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/041ab392-97c9-4e74-9220-edc3e5277b99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9cd5beb-89f4-4e9c-81b6-fb6885288be9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 542 - body: '{"volume": {"id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "542" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7c3e1e5e-2dce-410e-aacd-912869dc0240 + - 84930bc8-b0cb-4373-b200-4279be904131 status: 200 OK code: 200 - duration: 57.429385ms - - id: 65 + duration: 51.927315ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2195,7 +2163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/user_data method: GET response: proto: HTTP/2.0 @@ -2209,15 +2177,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ece73d98-68fe-4340-aee6-ec2b52256f18 + - 0a42a9d4-ebd9-4009-986f-791a1ce01636 status: 200 OK code: 200 - duration: 46.245127ms - - id: 66 + duration: 51.950178ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2227,7 +2195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/private_nics method: GET response: proto: HTTP/2.0 @@ -2241,19 +2209,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6eff994c-f2cd-4315-a830-b35a0ba6c20e + - 622e3ab3-de18-455e-a46d-bc658d3f52f8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 41.178401ms - - id: 67 + duration: 58.713018ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2263,29 +2231,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d3ac30d6-4aea-4db9-be74-01437f59beb4 + - ada98916-be92-4d47-b6a0-eea136a535ad status: 200 OK code: 200 - duration: 107.696935ms - - id: 68 + duration: 88.201801ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2295,29 +2263,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c3da6fbc-45e6-48f3-856e-5450f7ef5b28 + - b2a7d460-0aca-4302-98cf-d7cbbc4783dc status: 200 OK code: 200 - duration: 70.382209ms - - id: 69 + duration: 79.123478ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2327,29 +2295,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/041ab392-97c9-4e74-9220-edc3e5277b99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9cd5beb-89f4-4e9c-81b6-fb6885288be9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 542 - body: '{"volume": {"id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}' + body: '{"volume": {"id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - "542" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 49a08121-dc19-45d0-9fe5-43db8b19ccee + - e303517d-fb37-4891-9130-e2a50cc151f0 status: 200 OK code: 200 - duration: 55.732746ms - - id: 70 + duration: 57.858065ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2359,7 +2327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/user_data method: GET response: proto: HTTP/2.0 @@ -2373,15 +2341,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - dd41a2eb-8eaf-45d8-8086-9d9202bdc3fc + - 3dac719c-9ee9-47e4-bbe0-d18b9f09213a status: 200 OK code: 200 - duration: 44.716744ms - - id: 71 + duration: 40.855856ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2391,7 +2359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/private_nics method: GET response: proto: HTTP/2.0 @@ -2405,19 +2373,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:46 GMT + - Tue, 24 Feb 2026 11:22:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5be0383c-34aa-437e-afd1-2bb27f90b831 + - 3403daeb-272a-4017-85b8-1509f84847c5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.133899ms - - id: 72 + duration: 50.901712ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2427,29 +2395,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:47 GMT + - Tue, 24 Feb 2026 11:22:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 25b5989e-5d00-472b-9b5c-2c11b89619b0 + - a48b04d6-b8d9-4867-b39b-e7dd401b1b10 status: 200 OK code: 200 - duration: 93.002638ms - - id: 73 + duration: 71.419443ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2459,29 +2427,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2523 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:43.041227+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:40.009193+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2523" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:47 GMT + - Tue, 24 Feb 2026 11:22:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 310e94f2-f118-41be-86a0-00841f15d841 + - e3d2291a-094f-48a5-b3df-5d1e7bcc74b8 status: 200 OK code: 200 - duration: 85.806317ms - - id: 74 + duration: 95.502741ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2494,30 +2462,62 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "fd16334c-deaf-4216-885a-ee11611f3303", "description": "server_terminate", "status": "pending", "href_from": "/servers/d128c581-c244-4e76-a99e-fabc3a066dc7/action", "href_result": "/servers/d128c581-c244-4e76-a99e-fabc3a066dc7", "started_at": "2026-02-23T16:18:47.362765+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "50205657-22a2-4543-ada9-16712e25503f", "description": "server_terminate", "status": "pending", "href_from": "/servers/e570edc5-b5d6-4246-8f01-98d26a512b11/action", "href_result": "/servers/e570edc5-b5d6-4246-8f01-98d26a512b11", "started_at": "2026-02-24T11:22:41.661092+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:47 GMT + - Tue, 24 Feb 2026 11:22:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fd16334c-deaf-4216-885a-ee11611f3303 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/50205657-22a2-4543-ada9-16712e25503f Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c0c0bb7f-cf8e-48d4-be8b-b17aac0c1345 + - 07a66f36-70d5-46c7-92f0-2f552d0e9d00 status: 202 Accepted code: 202 - duration: 175.525222ms + duration: 198.55663ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2486 + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:41.513751+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2486" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 11:22:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c7071884-ef40-474d-a016-283586dce978 + status: 200 OK + code: 200 + duration: 68.371448ms - id: 75 request: proto: HTTP/1.1 @@ -2528,28 +2528,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2486 - body: '{"server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "041ab392-97c9-4e74-9220-edc3e5277b99", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d128c581-c244-4e76-a99e-fabc3a066dc7", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:30.102441+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:03:67", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T16:18:30.102441+00:00", "modification_date": "2026-02-23T16:18:47.230428+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "404", "node_id": "43"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d128c581-c244-4e76-a99e-fabc3a066dc7.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:41.513751+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' headers: Content-Length: - "2486" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:47 GMT + - Tue, 24 Feb 2026 11:22:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3db59ec0-a021-42c5-b6cd-28fbd225803c + - 5b46e1ab-1240-428b-a3ad-db309d24421a status: 200 OK code: 200 - duration: 77.630386ms + duration: 200.764245ms - id: 76 request: proto: HTTP/1.1 @@ -2560,29 +2560,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2486 + body: '{"server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-root-volume-from-image-local", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "e570edc5-b5d6-4246-8f01-98d26a512b11", "name": "tf-acc-server-root-volume-from-image-local"}, "size": 20000000000, "state": "available", "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:24.197752+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "root_volume_from_image_local"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:52:31", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T11:22:24.197752+00:00", "modification_date": "2026-02-24T11:22:41.513751+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "42", "hypervisor_id": "702", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e570edc5-b5d6-4246-8f01-98d26a512b11.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2486" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 11:22:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a7a36dff-afe9-4007-b33c-329eff2fe3ab + status: 200 OK + code: 200 + duration: 72.984382ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d128c581-c244-4e76-a99e-fabc3a066dc7"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e570edc5-b5d6-4246-8f01-98d26a512b11"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:52 GMT + - Tue, 24 Feb 2026 11:22:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d6155496-8689-4221-bf07-a45ddac8336c + - 4bc64203-3703-4bc8-8a50-d38bd8070671 status: 404 Not Found code: 404 - duration: 37.036584ms - - id: 77 + duration: 54.961269ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2592,29 +2624,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/041ab392-97c9-4e74-9220-edc3e5277b99 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9cd5beb-89f4-4e9c-81b6-fb6885288be9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "041ab392-97c9-4e74-9220-edc3e5277b99"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "a9cd5beb-89f4-4e9c-81b6-fb6885288be9"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:52 GMT + - Tue, 24 Feb 2026 11:22:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7331b497-9e94-4c48-afda-85b74e145813 + - 8787d08a-ac17-41b5-80f4-ee2ff776e246 status: 404 Not Found code: 404 - duration: 32.371974ms - - id: 78 + duration: 38.570054ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2624,29 +2656,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/041ab392-97c9-4e74-9220-edc3e5277b99 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9cd5beb-89f4-4e9c-81b6-fb6885288be9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 127 - body: '{"message":"resource is not found","resource":"volume","resource_id":"041ab392-97c9-4e74-9220-edc3e5277b99","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"a9cd5beb-89f4-4e9c-81b6-fb6885288be9","type":"not_found"}' headers: Content-Length: - "127" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:52 GMT + - Tue, 24 Feb 2026 11:22:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 47f84988-558d-4e9b-9019-6271408ee941 + - 9c43e254-4273-4e34-a5f9-ad10c3da5012 status: 404 Not Found code: 404 - duration: 24.530871ms - - id: 79 + duration: 18.944925ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2656,25 +2688,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d128c581-c244-4e76-a99e-fabc3a066dc7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e570edc5-b5d6-4246-8f01-98d26a512b11 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d128c581-c244-4e76-a99e-fabc3a066dc7"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e570edc5-b5d6-4246-8f01-98d26a512b11"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 16:18:52 GMT + - Tue, 24 Feb 2026 11:22:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d7e0b254-e303-4ba1-9271-45e0c313a30c + - 15f6b29f-6ad3-454a-a692-e143cae82d81 status: 404 Not Found code: 404 - duration: 54.583986ms + duration: 49.257514ms From f01f63c8904c67a143b6c4a64545b4ee1393f2b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Tue, 24 Feb 2026 15:45:58 +0100 Subject: [PATCH 2/4] tests(instance): add test with marketplace image datasource --- .../services/instance/server_image_test.go | 170 ++ internal/services/instance/server_test.go | 102 - ...from-marketplace-data-source.cassette.yaml | 2245 +++++++++++++++++ 3 files changed, 2415 insertions(+), 102 deletions(-) create mode 100644 internal/services/instance/server_image_test.go create mode 100644 internal/services/instance/testdata/server-image-from-marketplace-data-source.cassette.yaml diff --git a/internal/services/instance/server_image_test.go b/internal/services/instance/server_image_test.go new file mode 100644 index 0000000000..f26bc95b85 --- /dev/null +++ b/internal/services/instance/server_image_test.go @@ -0,0 +1,170 @@ +package instance_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-testing/helper/resource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + instancechecks "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/testfuncs" +) + +func TestAccServer_CustomDiffImage(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + var mainServerID, controlServerID string + + resource.ParallelTest(t, resource.TestCase{ + ProtoV6ProviderFactories: tt.ProviderFactories, + CheckDestroy: instancechecks.IsServerDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_instance_server" "main" { + name = "tf-acc-server-custom-diff-image-main-server" + image = "ubuntu_jammy" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] + } + resource "scaleway_instance_server" "control" { + name = "tf-acc-server-custom-diff-image-control-server" + image = "ubuntu_jammy" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] + } + `, + Check: resource.ComposeTestCheckFunc( + instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), + instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), + ), + }, + { + Config: fmt.Sprintf(` + data "scaleway_marketplace_image" "jammy" { + label = "ubuntu_jammy" + image_type = "%s" + } + resource "scaleway_instance_server" "main" { + name = "tf-acc-server-custom-diff-image-main-server" + image = data.scaleway_marketplace_image.jammy.id + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] + } + resource "scaleway_instance_server" "control" { + name = "tf-acc-server-custom-diff-image-control-server" + image = "ubuntu_jammy" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] + } + `, marketplaceImageType), + Check: resource.ComposeTestCheckFunc( + instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), + instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), + resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.jammy", "id"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", true), + acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), + ), + }, + { + Config: fmt.Sprintf(` + data "scaleway_marketplace_image" "focal" { + label = "ubuntu_focal" + image_type = "%s" + } + resource "scaleway_instance_server" "main" { + name = "tf-acc-server-custom-diff-image-main-server" + image = data.scaleway_marketplace_image.focal.id + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] + } + resource "scaleway_instance_server" "control" { + name = "tf-acc-server-custom-diff-image-control-server" + image = "ubuntu_jammy" + type = "DEV1-S" + state = "stopped" + tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] + } + `, marketplaceImageType), + Check: resource.ComposeTestCheckFunc( + instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), + instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), + resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.focal", "id"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", false), + acctest.CheckResourceIDChanged("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), + ), + }, + }, + }) +} + +func TestAccServer_ImageFromMarketplaceDataSource(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + ProtoV6ProviderFactories: tt.ProviderFactories, + Steps: []resource.TestStep{ + { + Config: ` + data "scaleway_marketplace_image" "local" { + label = "ubuntu_focal" + instance_type = "DEV1-S" + } + + resource "scaleway_instance_server" "main" { + name = "tf-acc-server-image-from-marketplace-datasource" + image = "${data.scaleway_marketplace_image.local.id}" + type = "DEV1-S" + }`, + Check: resource.ComposeTestCheckFunc( + instancechecks.DoesImageExists(tt, "data.scaleway_marketplace_image.local"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.local", "label", "ubuntu_focal"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.local", "image_type", "instance_local"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.local", "instance_type", "DEV1-S"), + resource.TestCheckResourceAttrPair("data.scaleway_marketplace_image.local", "id", "scaleway_instance_server.main", "image"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "root_volume.0.volume_type", "l_ssd"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "fr-par-1/"+ubuntuFocalLocalFrPar1ImageID), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "computed_image_id", ubuntuFocalLocalFrPar1ImageID), + ), + }, + { + Config: ` + data "scaleway_marketplace_image" "sbs" { + label = "ubuntu_focal" + instance_type = "DEV1-S" + image_type = "instance_sbs" + } + + resource "scaleway_instance_server" "main" { + name = "tf-acc-server-image-from-marketplace-datasource" + image = "${data.scaleway_marketplace_image.sbs.id}" + type = "DEV1-S" + }`, + Check: resource.ComposeTestCheckFunc( + instancechecks.DoesImageExists(tt, "data.scaleway_marketplace_image.sbs"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.sbs", "label", "ubuntu_focal"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.sbs", "image_type", "instance_sbs"), + resource.TestCheckResourceAttr("data.scaleway_marketplace_image.sbs", "instance_type", "DEV1-S"), + resource.TestCheckResourceAttrPair("data.scaleway_marketplace_image.sbs", "id", "scaleway_instance_server.main", "image"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "root_volume.0.volume_type", "sbs_volume"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "fr-par-1/"+ubuntuFocalSBSFrPar1ImageID), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "computed_image_id", ubuntuFocalSBSFrPar1ImageID), + ), + }, + }, + }) +} diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 788bf9aef7..1567334b7f 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -306,108 +306,6 @@ func TestAccServer_WithPlacementGroup(t *testing.T) { }) } -func TestAccServer_CustomDiffImage(t *testing.T) { - tt := acctest.NewTestTools(t) - defer tt.Cleanup() - - var mainServerID, controlServerID string - - resource.ParallelTest(t, resource.TestCase{ - ProtoV6ProviderFactories: tt.ProviderFactories, - CheckDestroy: instancechecks.IsServerDestroyed(tt), - Steps: []resource.TestStep{ - { - Config: ` - resource "scaleway_instance_server" "main" { - name = "tf-acc-server-custom-diff-image-main-server" - image = "ubuntu_jammy" - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] - } - resource "scaleway_instance_server" "control" { - name = "tf-acc-server-custom-diff-image-control-server" - image = "ubuntu_jammy" - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] - } - `, - Check: resource.ComposeTestCheckFunc( - instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), - instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), - resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy"), - resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), - acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), - acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), - ), - }, - { - Config: fmt.Sprintf(` - data "scaleway_marketplace_image" "jammy" { - label = "ubuntu_jammy" - image_type = "%s" - } - resource "scaleway_instance_server" "main" { - name = "tf-acc-server-custom-diff-image-main-server" - image = data.scaleway_marketplace_image.jammy.id - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] - } - resource "scaleway_instance_server" "control" { - name = "tf-acc-server-custom-diff-image-control-server" - image = "ubuntu_jammy" - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] - } - `, marketplaceImageType), - Check: resource.ComposeTestCheckFunc( - instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), - instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.jammy", "id"), - resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), - imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", true), - acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), - acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), - ), - }, - { - Config: fmt.Sprintf(` - data "scaleway_marketplace_image" "focal" { - label = "ubuntu_focal" - image_type = "%s" - } - resource "scaleway_instance_server" "main" { - name = "tf-acc-server-custom-diff-image-main-server" - image = data.scaleway_marketplace_image.focal.id - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "main" ] - } - resource "scaleway_instance_server" "control" { - name = "tf-acc-server-custom-diff-image-control-server" - image = "ubuntu_jammy" - type = "DEV1-S" - state = "stopped" - tags = [ "terraform-test", "scaleway_instance_server", "custom_diff_image", "control" ] - } - `, marketplaceImageType), - Check: resource.ComposeTestCheckFunc( - instancechecks.IsServerPresent(tt, "scaleway_instance_server.main"), - instancechecks.IsServerPresent(tt, "scaleway_instance_server.control"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.focal", "id"), - resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), - imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", false), - acctest.CheckResourceIDChanged("scaleway_instance_server.main", &mainServerID), - acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), - ), - }, - }, - }) -} - func TestAccServer_AttachDetachFileSystem(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() diff --git a/internal/services/instance/testdata/server-image-from-marketplace-data-source.cassette.yaml b/internal/services/instance/testdata/server-image-from-marketplace-data-source.cassette.yaml new file mode 100644 index 0000000000..b7edf75dcd --- /dev/null +++ b/internal/services/instance/testdata/server-image-from-marketplace-data-source.cassette.yaml @@ -0,0 +1,2245 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 4a677bc3-1f67-487e-9774-f4ec7fbd3a6d + status: 200 OK + code: 200 + duration: 69.893887ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "1" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 41052 + body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' + headers: + Content-Length: + - "41052" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 5c2a7e56-410a-4de1-bdd8-fa4a676c61d9 + X-Total-Count: + - "76" + status: 200 OK + code: 200 + duration: 32.443201ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "2" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 21472 + body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' + headers: + Content-Length: + - "21472" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 5a214ad6-bc33-4710-9d7b-8e442ec21025 + X-Total-Count: + - "76" + status: 200 OK + code: 200 + duration: 40.919402ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 260 + host: api.scaleway.com + body: '{"name":"tf-acc-server-image-from-marketplace-datasource","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 2306 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2306" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 07032908-6420-4f3e-a409-97d4a795d012 + status: 201 Created + code: 201 + duration: 289.084642ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2306 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2306" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - e15d3117-981e-4817-b247-f000fc938a4c + status: 200 OK + code: 200 + duration: 82.222826ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2306 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2306" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - a2bee981-7a2b-480d-b14c-b94008fbbe59 + status: 200 OK + code: 200 + duration: 103.082449ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: '{"action":"poweron"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: '{"task": {"id": "3e3a0166-f97b-4a29-ac0f-393e7d36de08", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/action", "href_result": "/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2", "started_at": "2026-02-24T14:43:26.116133+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:26 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3e3a0166-f97b-4a29-ac0f-393e7d36de08 + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 67165866-d875-4004-a5a4-14de167956ad + status: 202 Accepted + code: 202 + duration: 259.357893ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2328 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.925963+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2328" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - b4b7e9a1-dda5-47fc-ae1b-c0609b8063ef + status: 200 OK + code: 200 + duration: 96.201523ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2431 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.925963+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2431" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - bda70a06-248c-4b73-9574-e1ae17ccb60f + status: 200 OK + code: 200 + duration: 99.108414ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2431 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.925963+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2431" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 43b66ab9-3518-4617-97ab-2c656e4cc866 + status: 200 OK + code: 200 + duration: 96.979525ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - afa9d7bd-7842-4936-b029-086b2ec660e2 + status: 200 OK + code: 200 + duration: 99.791869ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 2704f5d5-6e19-4bc5-9f2c-081d164df370 + status: 200 OK + code: 200 + duration: 76.404708ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25800fd1-e72b-4df4-8436-172d17cfa17c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: '{"volume": {"id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - ec32b7a3-2b4b-4acf-b1e0-98bae3d84270 + status: 200 OK + code: 200 + duration: 71.551492ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - b4c900e0-6d1c-433e-9cbd-ab06af48337c + status: 200 OK + code: 200 + duration: 64.043118ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 6747903c-073f-4a91-9b77-26686b3191f3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 54.574953ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a02f91b9-de8a-4bd5-8f95-d79cb7d39806 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 610 + body: '{"image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "610" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - e518cb57-b100-4682-b444-193441327f0a + status: 200 OK + code: 200 + duration: 35.267716ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c7c443ca-69ae-4d8c-b552-837f86c0f8cd + status: 200 OK + code: 200 + duration: 48.619938ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_local + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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_local&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 423 + body: '{"local_images":[{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}], "total_count":1}' + headers: + Content-Length: + - "423" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - efbbbe7d-9bbc-42c6-a729-eba208170495 + status: 200 OK + code: 200 + duration: 48.689598ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 78fe4726-6aac-44dc-a24b-ae1c90fbc5f8 + status: 200 OK + code: 200 + duration: 97.634266ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25800fd1-e72b-4df4-8436-172d17cfa17c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: '{"volume": {"id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 0f49340d-93e0-43bb-bb5b-c48b55ce3508 + status: 200 OK + code: 200 + duration: 62.144402ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 200e8ba5-721a-4eda-be92-68aa208317b6 + status: 200 OK + code: 200 + duration: 65.084133ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 5a4e49cd-9a27-49a5-abb8-2d40549473c6 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 44.718459ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 1556 + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G", "STANDARD2-A2C-8G", "STANDARD2-A4C-16G", "STANDARD2-A8C-32G", "STANDARD2-A16C-64G", "STANDARD2-A32C-128G", "STANDARD2-A48C-192G", "STANDARD2-A64C-256G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' + headers: + Content-Length: + - "1556" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 9ef55278-194b-4e2c-af34-e5dfdef505ad + status: 200 OK + code: 200 + duration: 52.988052ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - f8c1ed88-8eee-4152-a496-eb7491d042f2 + status: 200 OK + code: 200 + duration: 74.317517ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25800fd1-e72b-4df4-8436-172d17cfa17c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 547 + body: '{"volume": {"id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "547" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - b466aa6f-f50c-4aa7-8989-f04496ed8155 + status: 200 OK + code: 200 + duration: 54.476298ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - a2f37dc2-55c2-4c8b-8dc4-f25e38dc66f9 + status: 200 OK + code: 200 + duration: 45.186689ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:42 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 435e2a75-4b44-4d59-aaf6-7aebafd76b82 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 48.305637ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - ff769cdf-287c-406b-8621-d916d13357a4 + status: 200 OK + code: 200 + duration: 73.55761ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/a02f91b9-de8a-4bd5-8f95-d79cb7d39806 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 387 + body: '{"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "arch":"x86_64", "zone":"fr-par-1", "compatible_commercial_types":["DEV1-L", "DEV1-M", "DEV1-S", "DEV1-XL", "GP1-L", "GP1-M", "GP1-S", "GP1-XL", "GP1-XS", "STARDUST1-S", "START1-L", "START1-M", "START1-S", "START1-XS", "VC1L", "VC1M", "VC1S", "X64-120GB", "X64-15GB", "X64-30GB", "X64-60GB"], "label":"ubuntu_focal", "type":"instance_local"}' + headers: + Content-Length: + - "387" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 3ca8b855-d55d-4e60-b000-884d9c4030c8 + status: 200 OK + code: 200 + duration: 44.126908ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - f0f05336-60db-4eef-a330-07a0677e7546 + status: 200 OK + code: 200 + duration: 91.104491ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2462 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:37.269629+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2462" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - f60b7aad-842e-436c-9e43-579d1b6ffab9 + status: 200 OK + code: 200 + duration: 103.717903ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: '{"action":"terminate"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: '{"task": {"id": "3f57c3c7-2fe6-42b6-837a-781692bb6849", "description": "server_terminate", "status": "pending", "href_from": "/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2/action", "href_result": "/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2", "started_at": "2026-02-24T14:43:43.817788+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3f57c3c7-2fe6-42b6-837a-781692bb6849 + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 6eec69b1-38e7-49ad-8a1d-3d17e6421507 + status: 202 Accepted + code: 202 + duration: 467.800174ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2425 + body: '{"server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "a02f91b9-de8a-4bd5-8f95-d79cb7d39806", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"id": "e4e93065-045d-4e87-a627-068300e27a10", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "size": 10000000000}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:27.841572+00:00", "modification_date": "2025-09-12T09:19:27.841572+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "id": "25800fd1-e72b-4df4-8436-172d17cfa17c", "name": "Ubuntu 20.04 Focal Fossa", "volume_type": "l_ssd", "export_uri": null, "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "server": {"id": "d782b336-a019-4ee3-a5c6-190162a2cfb2", "name": "tf-acc-server-image-from-marketplace-datasource"}, "size": 10000000000, "state": "available", "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:25.506638+00:00", "tags": [], "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:c3", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:25.506638+00:00", "modification_date": "2026-02-24T14:43:43.415341+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "32", "hypervisor_id": "101", "node_id": "37"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d782b336-a019-4ee3-a5c6-190162a2cfb2.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2425" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 5bb0e7d7-84d9-4063-95b7-d2cce4512b1e + status: 200 OK + code: 200 + duration: 93.950956ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d782b336-a019-4ee3-a5c6-190162a2cfb2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d782b336-a019-4ee3-a5c6-190162a2cfb2"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - a4c60c48-0c21-4d35-8c6b-c47d8bc10165 + status: 404 Not Found + code: 404 + duration: 51.781025ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25800fd1-e72b-4df4-8436-172d17cfa17c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "25800fd1-e72b-4df4-8436-172d17cfa17c"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 77d145a3-3c35-4985-99fb-9decdc3b07cf + status: 404 Not Found + code: 404 + duration: 30.921693ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25800fd1-e72b-4df4-8436-172d17cfa17c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 127 + body: '{"message":"resource is not found","resource":"volume","resource_id":"25800fd1-e72b-4df4-8436-172d17cfa17c","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 3578f5ca-9310-4b47-a0a6-9d22c0ed49ef + status: 404 Not Found + code: 404 + duration: 21.420125ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "1" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 41052 + body: '{"servers": {"BASIC2-A16C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.89, "hourly_price": 0.2067, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 201.19, "hourly_price": 0.2756, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 503316480, "end_of_service": false}, "BASIC2-A2C-4G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 16.79, "hourly_price": 0.023, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 25.19, "hourly_price": 0.0345, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "BASIC2-A4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 50.3, "hourly_price": 0.0689, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A4C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 37.74, "hourly_price": 0.0517, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 125829120, "end_of_service": false}, "BASIC2-A8C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.48, "hourly_price": 0.1034, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "BASIC2-A8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 100.59, "hourly_price": 0.1378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 251658240, "end_of_service": false}, "COPARM1-16C-64G": {"alt_names": [], "arch": "arm64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 252.14, "hourly_price": 0.3454, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 671088640, "end_of_service": false}, "COPARM1-2C-8G": {"alt_names": [], "arch": "arm64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 31.1, "hourly_price": 0.0426, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "COPARM1-32C-128G": {"alt_names": [], "arch": "arm64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 506.26, "hourly_price": 0.6935, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 1342177280, "end_of_service": false}, "COPARM1-4C-16G": {"alt_names": [], "arch": "arm64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 62.56, "hourly_price": 0.0857, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "COPARM1-8C-32G": {"alt_names": [], "arch": "arm64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 125.85, "hourly_price": 0.1724, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 335544320, "end_of_service": false}, "DEV1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 80000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 30.66, "hourly_price": 0.042, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 209715200, "end_of_service": false}, "DEV1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 3, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 40000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.454, "hourly_price": 0.0198, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 157286400, "end_of_service": false}, "DEV1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 20000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.424, "hourly_price": 0.0088, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 104857600, "end_of_service": false}, "DEV1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 12884901888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 120000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 46.5734, "hourly_price": 0.06378, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "GP1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 554.07, "hourly_price": 0.759, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1073741824, "end_of_service": false}, "GP1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 274.48, "hourly_price": 0.376, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "GP1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 300000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 136.51, "hourly_price": 0.187, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "GP1-XL": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 600000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1197.93, "hourly_price": 1.641, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "GP1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 150000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 66.43, "hourly_price": 0.091, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 314572800, "end_of_service": false}, "L4-1-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 51539607552, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 547.5, "hourly_price": 0.75, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2500000000, "sum_internet_bandwidth": 2500000000, "interfaces": [{"internal_bandwidth": 2500000000, "internet_bandwidth": 2500000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "L4-2-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 103079215104, "gpu": 2, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1095.0, "hourly_price": 1.5, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 1572864000, "end_of_service": false}, "L4-4-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 206158430208, "gpu": 4, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2190.0, "hourly_price": 3.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 2621440000, "end_of_service": false}, "L4-8-24G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 412316860416, "gpu": 8, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "L4", "gpu_memory": 25769803776}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4380.0, "hourly_price": 6.0, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 20000000000, "sum_internet_bandwidth": 20000000000, "interfaces": [{"internal_bandwidth": 20000000000, "internet_bandwidth": 20000000000}]}, "block_bandwidth": 5242880000, "end_of_service": false}, "PLAY2-MICRO": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 39.42, "hourly_price": 0.054, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 167772160, "end_of_service": false}, "PLAY2-NANO": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 19.71, "hourly_price": 0.027, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 83886080, "end_of_service": false}, "PLAY2-PICO": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 10.22, "hourly_price": 0.014, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": false}, "POP2-16C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 430.7, "hourly_price": 0.59, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-16C-64G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1063.391, "hourly_price": 1.4567, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-2C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 53.66, "hourly_price": 0.0735, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-2C-8G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 133.079, "hourly_price": 0.1823, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-32C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 861.4, "hourly_price": 1.18, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-32C-128G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2126.709, "hourly_price": 2.9133, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-48C-192G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 206158430208, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1274.4, "hourly_price": 1.77, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-4C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 107.31, "hourly_price": 0.147, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-4C-16G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 265.501, "hourly_price": 0.3637, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-64C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1715.5, "hourly_price": 2.35, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-8C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 211.7, "hourly_price": 0.29, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-8C-32G-WIN": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 528.009, "hourly_price": 0.7233, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HC-16C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.69, "hourly_price": 0.4256, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HC-2C-4G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 38.84, "hourly_price": 0.0532, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HC-32C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 621.38, "hourly_price": 0.8512, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-48C-96G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 103079215104, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 914.4, "hourly_price": 1.27, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-4C-8G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 77.67, "hourly_price": 0.1064, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HC-64C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1242.75, "hourly_price": 1.7024, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HC-8C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.34, "hourly_price": 0.2128, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HM-16C-128G": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 601.52, "hourly_price": 0.824, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 4}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3200000000, "sum_internet_bandwidth": 3200000000, "interfaces": [{"internal_bandwidth": 3200000000, "internet_bandwidth": 3200000000}]}, "block_bandwidth": 3355443200, "end_of_service": false}, "POP2-HM-2C-16G": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 75.19, "hourly_price": 0.103, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 419430400, "end_of_service": false}}}' + headers: + Content-Length: + - "41052" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 6727eb42-cc22-4e59-a17e-41e46a6941e2 + X-Total-Count: + - "76" + status: 200 OK + code: 200 + duration: 39.621065ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + page: + - "2" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 21472 + body: '{"servers": {"POP2-HM-32C-256G": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 274877906944, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1203.04, "hourly_price": 1.648, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 8}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6400000000, "sum_internet_bandwidth": 6400000000, "interfaces": [{"internal_bandwidth": 6400000000, "internet_bandwidth": 6400000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-48C-384G": {"alt_names": [], "arch": "x86_64", "ncpus": 48, "ram": 412316860416, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 1778.4, "hourly_price": 2.47, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 12}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 9600000000, "sum_internet_bandwidth": 9600000000, "interfaces": [{"internal_bandwidth": 9600000000, "internet_bandwidth": 9600000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-4C-32G": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 150.38, "hourly_price": 0.206, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 800000000, "sum_internet_bandwidth": 800000000, "interfaces": [{"internal_bandwidth": 800000000, "internet_bandwidth": 800000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HM-64C-512G": {"alt_names": [], "arch": "x86_64", "ncpus": 64, "ram": 549755813888, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 2406.08, "hourly_price": 3.296, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 16}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 12800000000, "sum_internet_bandwidth": 12800000000, "interfaces": [{"internal_bandwidth": 12800000000, "internet_bandwidth": 12800000000}]}, "block_bandwidth": 5905580032, "end_of_service": false}, "POP2-HM-8C-64G": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 300.76, "hourly_price": 0.412, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 2}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1600000000, "sum_internet_bandwidth": 1600000000, "interfaces": [{"internal_bandwidth": 1600000000, "internet_bandwidth": 1600000000}]}, "block_bandwidth": 1677721600, "end_of_service": false}, "POP2-HN-10": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 530.29, "hourly_price": 0.7264, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 10000000000, "sum_internet_bandwidth": 10000000000, "interfaces": [{"internal_bandwidth": 10000000000, "internet_bandwidth": 10000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "POP2-HN-3": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 186.49, "hourly_price": 0.2554, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 419430400, "end_of_service": false}, "POP2-HN-5": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 330.29, "hourly_price": 0.4524, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 1}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 5000000000, "sum_internet_bandwidth": 5000000000, "interfaces": [{"internal_bandwidth": 5000000000, "internet_bandwidth": 5000000000}]}, "block_bandwidth": 838860800, "end_of_service": false}, "PRO2-L": {"alt_names": [], "arch": "x86_64", "ncpus": 32, "ram": 137438953472, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 640.21, "hourly_price": 0.877, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 6000000000, "sum_internet_bandwidth": 6000000000, "interfaces": [{"internal_bandwidth": 6000000000, "internet_bandwidth": 6000000000}]}, "block_bandwidth": 2097152000, "end_of_service": false}, "PRO2-M": {"alt_names": [], "arch": "x86_64", "ncpus": 16, "ram": 68719476736, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 319.74, "hourly_price": 0.438, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 3000000000, "sum_internet_bandwidth": 3000000000, "interfaces": [{"internal_bandwidth": 3000000000, "internet_bandwidth": 3000000000}]}, "block_bandwidth": 1048576000, "end_of_service": false}, "PRO2-S": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 34359738368, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 159.87, "hourly_price": 0.219, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1500000000, "sum_internet_bandwidth": 1500000000, "interfaces": [{"internal_bandwidth": 1500000000, "internet_bandwidth": 1500000000}]}, "block_bandwidth": 524288000, "end_of_service": false}, "PRO2-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 17179869184, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 80.3, "hourly_price": 0.11, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 700000000, "sum_internet_bandwidth": 700000000, "interfaces": [{"internal_bandwidth": 700000000, "internet_bandwidth": 700000000}]}, "block_bandwidth": 262144000, "end_of_service": false}, "PRO2-XXS": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 0}, "per_volume_constraint": {"l_ssd": {"min_size": 0, "max_size": 0}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 40.15, "hourly_price": 0.055, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": false, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 350000000, "sum_internet_bandwidth": 350000000, "interfaces": [{"internal_bandwidth": 350000000, "internet_bandwidth": 350000000}]}, "block_bandwidth": 131072000, "end_of_service": false}, "RENDER-S": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 45097156608, "gpu": 1, "gpu_info": {"gpu_manufacturer": "NVIDIA", "gpu_name": "P100", "gpu_memory": 17179869184}, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 891.33, "hourly_price": 1.221, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 2000000000, "sum_internet_bandwidth": 2000000000, "interfaces": [{"internal_bandwidth": 2000000000, "internet_bandwidth": 2000000000}]}, "block_bandwidth": 2147483648, "end_of_service": false}, "STARDUST1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 10000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 0.1095, "hourly_price": 0.00015, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 52428800, "end_of_service": false}, "START1-L": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 26.864, "hourly_price": 0.0368, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 400000000, "sum_internet_bandwidth": 400000000, "interfaces": [{"internal_bandwidth": 400000000, "internet_bandwidth": 400000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-M": {"alt_names": [], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 14.162, "hourly_price": 0.0194, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 300000000, "sum_internet_bandwidth": 300000000, "interfaces": [{"internal_bandwidth": 300000000, "internet_bandwidth": 300000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-S": {"alt_names": [], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 7.738, "hourly_price": 0.0106, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "START1-XS": {"alt_names": [], "arch": "x86_64", "ncpus": 1, "ram": 1073741824, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 25000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 4.526, "hourly_price": 0.0062, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 100000000, "sum_internet_bandwidth": 100000000, "interfaces": [{"internal_bandwidth": 100000000, "internet_bandwidth": 100000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1L": {"alt_names": ["X64-8GB"], "arch": "x86_64", "ncpus": 6, "ram": 8589934592, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 18.0164, "hourly_price": 0.02468, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1M": {"alt_names": ["X64-4GB"], "arch": "x86_64", "ncpus": 4, "ram": 4294967296, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 100000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 11.3515, "hourly_price": 0.01555, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "VC1S": {"alt_names": ["X64-2GB"], "arch": "x86_64", "ncpus": 2, "ram": 2147483648, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 50000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 6.2926, "hourly_price": 0.00862, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 200000000, "sum_internet_bandwidth": 200000000, "interfaces": [{"internal_bandwidth": 200000000, "internet_bandwidth": 200000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-120GB": {"alt_names": [], "arch": "x86_64", "ncpus": 12, "ram": 128849018880, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 800000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 310.7902, "hourly_price": 0.42574, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-15GB": {"alt_names": [], "arch": "x86_64", "ncpus": 6, "ram": 16106127360, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 200000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 44.0336, "hourly_price": 0.06032, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 250000000, "sum_internet_bandwidth": 250000000, "interfaces": [{"internal_bandwidth": 250000000, "internet_bandwidth": 250000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-30GB": {"alt_names": [], "arch": "x86_64", "ncpus": 8, "ram": 32212254720, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 400000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 86.9138, "hourly_price": 0.11906, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 500000000, "sum_internet_bandwidth": 500000000, "interfaces": [{"internal_bandwidth": 500000000, "internet_bandwidth": 500000000}]}, "block_bandwidth": 41943040, "end_of_service": true}, "X64-60GB": {"alt_names": [], "arch": "x86_64", "ncpus": 10, "ram": 64424509440, "gpu": 0, "gpu_info": null, "mig_profile": null, "volumes_constraint": {"min_size": 0, "max_size": 700000000000}, "per_volume_constraint": {"l_ssd": {"min_size": 1000000000, "max_size": 800000000000}}, "scratch_storage_max_size": 0, "scratch_storage_max_volumes_count": 0, "monthly_price": 155.49, "hourly_price": 0.213, "capabilities": {"boot_types": ["local", "rescue"], "placement_groups": true, "block_storage": true, "hot_snapshots_local_volume": true, "private_network": 8, "max_file_systems": 0}, "network": {"ipv6_support": true, "sum_internal_bandwidth": 1000000000, "sum_internet_bandwidth": 1000000000, "interfaces": [{"internal_bandwidth": 1000000000, "internet_bandwidth": 1000000000}]}, "block_bandwidth": 41943040, "end_of_service": true}}}' + headers: + Content-Length: + - "21472" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 442fcf50-16ea-4311-b8d0-38b50638cd05 + X-Total-Count: + - "76" + status: 200 OK + code: 200 + duration: 41.020453ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 260 + host: api.scaleway.com + body: '{"name":"tf-acc-server-image-from-marketplace-datasource","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 1861 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:49.230839+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "1861" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 42fbeca3-7d77-4681-b75d-4e8527fefea7 + status: 201 Created + code: 201 + duration: 445.391082ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1861 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:49.230839+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "1861" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 482aedeb-44d5-4632-869b-2469530c2665 + status: 200 OK + code: 200 + duration: 124.9895ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1861 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:49.230839+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "1861" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - f64451f0-7497-4569-b16e-6d1e9e1f402f + status: 200 OK + code: 200 + duration: 94.402717ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"9094576c-1e32-4d11-92c6-08f8b911d2a9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T14:43:49.339871Z", "updated_at":"2026-02-24T14:43:49.339871Z", "references":[{"id":"126ef8d3-decc-4c8f-9785-95a19b53c3ff", "product_resource_type":"instance_server", "product_resource_id":"01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "created_at":"2026-02-24T14:43:49.339871Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c50c2480-0ad2-40ae-af2a-411a16058589 + status: 200 OK + code: 200 + duration: 55.812829ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + host: api.scaleway.com + body: '{"action":"poweron"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: '{"task": {"id": "d89476bd-9cbd-45fa-a473-a0e500a2ad42", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/action", "href_result": "/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "started_at": "2026-02-24T14:43:50.131158+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d89476bd-9cbd-45fa-a473-a0e500a2ad42 + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 4a27a4ed-bb8d-49cd-8d65-8bf9d63f26c2 + status: 202 Accepted + code: 202 + duration: 279.968863ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1883 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:49.945336+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "1883" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 87b2c689-5a3e-4d01-b3d1-3caeb7c3001a + status: 200 OK + code: 200 + duration: 100.493657ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2017 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:52.534070+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2017" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 1545dd25-fcc4-4545-9f3e-a45576e14c32 + status: 200 OK + code: 200 + duration: 80.996554ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2017 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:52.534070+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2017" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c1d110df-321d-4d25-b574-597fc2778b0c + status: 200 OK + code: 200 + duration: 78.854721ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9094576c-1e32-4d11-92c6-08f8b911d2a9"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c36ee596-d42e-4c56-83b1-97cfb013f239 + status: 404 Not Found + code: 404 + duration: 31.650983ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"9094576c-1e32-4d11-92c6-08f8b911d2a9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T14:43:49.339871Z", "updated_at":"2026-02-24T14:43:49.339871Z", "references":[{"id":"126ef8d3-decc-4c8f-9785-95a19b53c3ff", "product_resource_type":"instance_server", "product_resource_id":"01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "created_at":"2026-02-24T14:43:49.339871Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 71276260-927f-4f0d-a544-5369ee7b91e5 + status: 200 OK + code: 200 + duration: 63.225533ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 15b630d9-8aab-4a07-8c68-ddb217380676 + status: 200 OK + code: 200 + duration: 44.181741ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c5b14330-3aa0-4def-a9fc-7de2488a3dc4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 59.347318ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 583 + body: '{"image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "583" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - d86e0d69-d427-4aa4-a7d9-50900900b54b + status: 200 OK + code: 200 + duration: 44.039504ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 1556 + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G", "STANDARD2-A2C-8G", "STANDARD2-A4C-16G", "STANDARD2-A8C-32G", "STANDARD2-A16C-64G", "STANDARD2-A32C-128G", "STANDARD2-A48C-192G", "STANDARD2-A64C-256G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' + headers: + Content-Length: + - "1556" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 551d954a-abbd-406e-b4ca-5090cfd78448 + status: 200 OK + code: 200 + duration: 47.536552ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + image_label: + - ubuntu_focal + order_by: + - type_asc + type: + - instance_sbs + zone: + - fr-par-1 + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) 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 + content_length: 1556 + body: '{"local_images":[{"id":"231ea125-6f18-45dd-8226-d7f190b5af80", "arch":"arm64", "zone":"fr-par-1", "compatible_commercial_types":["COPARM1-2C-8G", "COPARM1-4C-16G", "COPARM1-8C-32G", "COPARM1-16C-64G", "COPARM1-32C-128G", "BASIC2-A2C-4G", "BASIC2-A2C-8G", "BASIC2-A4C-8G", "BASIC2-A4C-16G", "BASIC2-A8C-16G", "BASIC2-A8C-32G", "BASIC2-A16C-32G", "BASIC2-A16C-64G", "STANDARD2-A2C-8G", "STANDARD2-A4C-16G", "STANDARD2-A8C-32G", "STANDARD2-A16C-64G", "STANDARD2-A32C-128G", "STANDARD2-A48C-192G", "STANDARD2-A64C-256G"], "label":"ubuntu_focal", "type":"instance_sbs"}, {"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}], "total_count":2}' + headers: + Content-Length: + - "1556" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 0afe8b10-42f9-4a63-85f7-2f4022f0eee2 + status: 200 OK + code: 200 + duration: 47.459027ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2017 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:52.534070+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2017" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 41125e26-6fe5-47c4-896a-0d253c6eddf6 + status: 200 OK + code: 200 + duration: 80.674659ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9094576c-1e32-4d11-92c6-08f8b911d2a9"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 9dbae6b6-122b-4899-9058-9c91fa72c93d + status: 404 Not Found + code: 404 + duration: 37.750711ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"9094576c-1e32-4d11-92c6-08f8b911d2a9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T14:43:49.339871Z", "updated_at":"2026-02-24T14:43:49.339871Z", "references":[{"id":"126ef8d3-decc-4c8f-9785-95a19b53c3ff", "product_resource_type":"instance_server", "product_resource_id":"01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "created_at":"2026-02-24T14:43:49.339871Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - bcc49e84-77b4-459c-949c-4a7d3c87ecd2 + status: 200 OK + code: 200 + duration: 46.327763ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 85643e4b-1099-4c64-8c0e-fdc171a091da + status: 200 OK + code: 200 + duration: 51.77301ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 194dbd98-5c80-43eb-8322-18f4f656f361 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 52.698869ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2017 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:52.534070+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2017" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 308b16c2-d0c9-49e6-a1b3-0697b8414418 + status: 200 OK + code: 200 + duration: 103.61972ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2017 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:52.534070+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2017" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - ef0fee08-2111-47a2-b43e-ef7f5e63a0ff + status: 200 OK + code: 200 + duration: 103.386381ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: '{"action":"terminate"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: '{"task": {"id": "bb165d8e-bb62-4c2a-862f-d114aa234acb", "description": "server_terminate", "status": "pending", "href_from": "/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8/action", "href_result": "/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "started_at": "2026-02-24T14:43:56.859897+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb165d8e-bb62-4c2a-862f-d114aa234acb + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 7c209d72-7ee9-46df-985a-48eebecb26da + status: 202 Accepted + code: 202 + duration: 174.197312ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1980 + body: '{"server": {"id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8", "name": "tf-acc-server-image-from-marketplace-datasource", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-image-from-marketplace-datasource", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9094576c-1e32-4d11-92c6-08f8b911d2a9", "state": "available", "zone": "fr-par-1"}}, "tags": [], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:68:cb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T14:43:49.230839+00:00", "modification_date": "2026-02-24T14:43:56.752198+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "93", "hypervisor_id": "102", "node_id": "36"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "1980" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - ffb640e1-c154-432a-80f7-c76ec2005408 + status: 200 OK + code: 200 + duration: 110.805777ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/01fd4b28-b2e0-42f0-9c95-ef4610b91fa8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "01fd4b28-b2e0-42f0-9c95-ef4610b91fa8"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c2027818-7eff-452b-937a-7ce29c9f3705 + status: 404 Not Found + code: 404 + duration: 56.892346ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9094576c-1e32-4d11-92c6-08f8b911d2a9"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - eb0f10a3-2824-4591-a950-ad4d7c66f93e + status: 404 Not Found + code: 404 + duration: 46.743883ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: '{"id":"9094576c-1e32-4d11-92c6-08f8b911d2a9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T14:43:49.339871Z", "updated_at":"2026-02-24T14:43:58.017337Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-24T14:43:58.017337Z", "zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 92296e7c-d571-4de3-8e07-96d7ea70cb2f + status: 200 OK + code: 200 + duration: 45.307386ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9094576c-1e32-4d11-92c6-08f8b911d2a9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Tue, 24 Feb 2026 14:44:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 5457c610-843a-4084-b6de-97bef1df0fd0 + status: 204 No Content + code: 204 + duration: 76.022421ms From 643195182ac4b2e0811082869eff9bb13fc709d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 26 Feb 2026 00:51:50 +0100 Subject: [PATCH 3/4] feat(instance): add support for server identity (wip tests) --- internal/services/instance/server.go | 37 +- .../services/instance/server_data_source.go | 7 +- internal/services/instance/server_test.go | 41 + ...er-attach-detach-file-system.cassette.yaml | 3148 ++++++++++------ .../testdata/server-minimal.cassette.yaml | 642 +++- .../server-with-placement-group.cassette.yaml | 3283 ++++++++++++----- 6 files changed, 4905 insertions(+), 2253 deletions(-) diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 0e2507bf14..dd3d61a065 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -28,6 +28,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/identity" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" @@ -58,6 +59,7 @@ func ResourceServer() *schema.Resource { }, SchemaVersion: 0, SchemaFunc: serverSchema, + Identity: identity.DefaultZonal(), CustomizeDiff: customdiff.All( cdf.LocalityCheck( "placement_group_id", @@ -521,7 +523,10 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m return diag.FromErr(err) } - d.SetId(zonal.NewID(zone, res.Server.ID).String()) + err = identity.SetZonalIdentity(d, res.Server.Zone, res.Server.ID) + if err != nil { + return diag.FromErr(err) + } _, err = waitForServer(ctx, api.API, zone, res.Server.ID, d.Timeout(schema.TimeoutCreate)) if err != nil { @@ -651,16 +656,10 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m } } - return append(diags, ResourceInstanceServerRead(ctx, d, m)...) + return append(diags, setServerState(ctx, d, m, api, res.Server.Zone, res.Server.ID)...) } -//gocyclo:ignore -func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { - api, zone, id, err := instancehelpers.InstanceAndBlockAPIWithZoneAndID(m, d.Id()) - if err != nil { - return diag.FromErr(err) - } - +func setServerState(ctx context.Context, d *schema.ResourceData, m any, api *instancehelpers.BlockAndInstanceAPI, zone scw.Zone, id string) diag.Diagnostics { server, err := waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutRead)) if err != nil { if errorCheck(err, "is not found") { @@ -673,9 +672,6 @@ func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m a return diag.FromErr(err) } - //// - // Read Server - //// state, err := serverStateFlatten(server.State) if err != nil { return diag.FromErr(err) @@ -900,6 +896,21 @@ You can check the full list of compatible server types: return diags } +//gocyclo:ignore +func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, id, err := instancehelpers.InstanceAndBlockAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + err = identity.SetZonalIdentity(d, zone, id) + if err != nil { + return diag.FromErr(err) + } + + return setServerState(ctx, d, m, api, zone, id) +} + //gocyclo:ignore func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { api, zone, id, err := instancehelpers.InstanceAndBlockAPIWithZoneAndID(m, d.Id()) @@ -1178,7 +1189,7 @@ func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m return diag.FromErr(err) } - return append(warnings, ResourceInstanceServerRead(ctx, d, m)...) + return append(warnings, setServerState(ctx, d, m, api, zone, id)...) } func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { diff --git a/internal/services/instance/server_data_source.go b/internal/services/instance/server_data_source.go index bc944abb3a..3e512d248d 100644 --- a/internal/services/instance/server_data_source.go +++ b/internal/services/instance/server_data_source.go @@ -8,6 +8,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/instancehelpers" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" ) @@ -36,7 +37,7 @@ func DataSourceServer() *schema.Resource { } func DataSourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { - instanceAPI, zone, err := newAPIWithZone(d, m) + api, zone, id, err := instancehelpers.InstanceAndBlockAPIWithZoneAndID(m, d.Id()) if err != nil { return diag.FromErr(err) } @@ -45,7 +46,7 @@ func DataSourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m if !ok { serverName := d.Get("name").(string) - res, err := instanceAPI.ListServers(&instance.ListServersRequest{ + res, err := api.API.ListServers(&instance.ListServersRequest{ Zone: zone, Name: types.ExpandStringPtr(serverName), Project: types.ExpandStringPtr(d.Get("project_id")), @@ -70,5 +71,5 @@ func DataSourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m d.SetId(zonedID) _ = d.Set("server_id", zonedID) - return ResourceInstanceServerRead(ctx, d, m) + return setServerState(ctx, d, m, api, zone, id) } diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 1567334b7f..7eb01399d7 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -52,6 +52,12 @@ func TestAccServer_Minimal(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.base", "state", "started"), ), }, + { + ResourceName: "scaleway_instance_server.base", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"replace_on_type_change"}, + }, }, }) } @@ -302,6 +308,30 @@ func TestAccServer_WithPlacementGroup(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.ha.2", "placement_group_policy_respected", "false"), ), }, + { + Config: ` + resource "scaleway_instance_placement_group" "ha" { + policy_mode = "enforced" + policy_type = "max_availability" + } + + resource "scaleway_instance_server" "ha" { + name = "tf-acc-server-with-placement-group" + image = "ubuntu_focal" + type = "PLAY2-PICO" + placement_group_id = "${scaleway_instance_placement_group.ha.id}" + tags = [ "terraform-test", "scaleway_instance_server", "placement_group" ] + }`, + Check: resource.ComposeTestCheckFunc( + instancechecks.IsServerPresent(tt, "scaleway_instance_server.ha"), + ), + }, + { + ResourceName: "scaleway_instance_server.ha", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"replace_on_type_change"}, + }, }, }) } @@ -342,6 +372,12 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "attach_detach_file_system"), ), }, + { + ResourceName: "scaleway_instance_server.base", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"replace_on_type_change"}, + }, { Config: fmt.Sprintf(` resource "scaleway_file_filesystem" "terraform_instance_filesystem" { @@ -377,6 +413,11 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "attach_detach_file_system"), ), + }, { + ResourceName: "scaleway_instance_server.base", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"replace_on_type_change"}, }, { Config: fmt.Sprintf(` diff --git a/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml b/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml index 033871c3f1..39d07356b9 100644 --- a/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml +++ b/internal/services/instance/testdata/server-attach-detach-file-system.cassette.yaml @@ -21,21 +21,21 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 469 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "469" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:04 GMT + - Wed, 25 Feb 2026 12:02:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b7d0cb30-cf0b-4728-a188-274def46f626 + - c9398848-071d-4a6a-ad19-fba81b14b0ee status: 200 OK code: 200 - duration: 230.87881ms + duration: 179.969877ms - id: 1 request: proto: HTTP/1.1 @@ -46,28 +46,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 469 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "469" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:04 GMT + - Wed, 25 Feb 2026 12:02:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 631105fd-3b87-445e-8bae-d489145ae09c + - 323571e5-9c72-4b86-9eaa-3870435874ab status: 200 OK code: 200 - duration: 47.818447ms + duration: 46.388141ms - id: 2 request: proto: HTTP/1.1 @@ -78,28 +78,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:09 GMT + - Wed, 25 Feb 2026 12:02:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 964c6378-c373-412c-9973-fe8d7072b3d4 + - dd32ffc5-fb88-466b-9a28-e1fb13905f05 status: 200 OK code: 200 - duration: 57.089996ms + duration: 46.530614ms - id: 3 request: proto: HTTP/1.1 @@ -110,28 +110,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:09 GMT + - Wed, 25 Feb 2026 12:02:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3a7696bd-c4e5-4541-bf90-150d50d54053 + - 4c100970-78fa-421c-85e0-7f372a436bc7 status: 200 OK code: 200 - duration: 53.778457ms + duration: 43.349532ms - id: 4 request: proto: HTTP/1.1 @@ -159,18 +159,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:09 GMT + - Wed, 25 Feb 2026 12:02:21 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 56638026-2670-4a78-b935-85196d54beb9 + - dc9e4ea2-f307-4771-8e19-232908554fbb X-Total-Count: - "76" status: 200 OK code: 200 - duration: 40.473231ms + duration: 47.892974ms - id: 5 request: proto: HTTP/1.1 @@ -198,18 +198,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:09 GMT + - Wed, 25 Feb 2026 12:02:21 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 37cd29fc-3da1-48b8-bf60-4f6170aeb14b + - 8092a1a6-9bf2-4fcf-8a9b-37a8fa868aa1 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 30.046115ms + duration: 36.444598ms - id: 6 request: proto: HTTP/1.1 @@ -243,14 +243,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:09 GMT + - Wed, 25 Feb 2026 12:02:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a1b7490a-36ca-4224-bce0-2f82a5bbc6e2 + - 05405d10-f54d-4249-a7c5-9e7759dd93fc status: 200 OK code: 200 - duration: 166.995074ms + duration: 62.773926ms - id: 7 request: proto: HTTP/1.1 @@ -271,23 +271,23 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 1930 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:09.986399+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:22.117621+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "1930" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:10 GMT + - Wed, 25 Feb 2026 12:02:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6ccda933-b561-443b-b5e9-42024f2dfb59 + - 67f5ea8c-b136-4923-9c12-6eb72f331a57 status: 201 Created code: 201 - duration: 537.232726ms + duration: 526.779609ms - id: 8 request: proto: HTTP/1.1 @@ -298,28 +298,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1930 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:09.986399+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:22.117621+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "1930" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:10 GMT + - Wed, 25 Feb 2026 12:02:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f97d399d-a8eb-42bf-ac1e-b289c8a20c89 + - 981256ec-9111-4b1b-b926-e18a83cd154f status: 200 OK code: 200 - duration: 98.552698ms + duration: 81.100614ms - id: 9 request: proto: HTTP/1.1 @@ -330,28 +330,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1976 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:09.986399+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 1930 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:22.117621+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "1976" + - "1930" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:10 GMT + - Wed, 25 Feb 2026 12:02:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f1eb957d-e867-4e73-a81f-856e181f7306 + - 35c95157-5139-4254-bf4e-639b5b8f3fea status: 200 OK code: 200 - duration: 214.730321ms + duration: 125.28889ms - id: 10 request: proto: HTTP/1.1 @@ -362,28 +362,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:10 GMT + - Wed, 25 Feb 2026 12:02:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4e15080f-5295-414f-902f-1103efb3b8a1 + - 03420516-6696-4df7-8462-327649f5929a status: 200 OK code: 200 - duration: 52.404036ms + duration: 50.776105ms - id: 11 request: proto: HTTP/1.1 @@ -397,30 +397,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "6cdfa785-03eb-4902-915c-f0b49a357996", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/action", "href_result": "/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624", "started_at": "2026-02-23T17:40:11.011687+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "6b794bde-ee60-4bfd-9f32-74cdf910bef5", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/action", "href_result": "/servers/39189ea4-6513-4126-a24c-25064cfdbc3b", "started_at": "2026-02-25T12:02:23.004190+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:11 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6cdfa785-03eb-4902-915c-f0b49a357996 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6b794bde-ee60-4bfd-9f32-74cdf910bef5 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7690646a-4a08-4723-a49e-9b7de25f2821 + - 0d2cea30-31c6-4759-ad83-6f7f44a92f21 status: 202 Accepted code: 202 - duration: 218.057579ms + duration: 200.973394ms - id: 12 request: proto: HTTP/1.1 @@ -431,28 +431,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1952 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:10.851047+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:22.851049+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "1952" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:11 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1f474d40-674b-4cf6-a0e4-68378a8c6a83 + - 8b1df27c-193a-4ea2-87c5-f72f66fc414d status: 200 OK code: 200 - duration: 272.484481ms + duration: 115.719552ms - id: 13 request: proto: HTTP/1.1 @@ -463,28 +463,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2132 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2086 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2132" + - "2086" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:16 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - afb08e43-f3da-47e0-96ae-66e266c9e296 + - 71f32678-bd4d-40b9-b41a-f06c03abaa17 status: 200 OK code: 200 - duration: 433.172397ms + duration: 87.626267ms - id: 14 request: proto: HTTP/1.1 @@ -492,34 +492,34 @@ interactions: proto_minor: 1 content_length: 56 host: api.scaleway.com - body: '{"filesystem_id":"629de258-67cc-4400-9e1d-bd8be3655339"}' + body: '{"filesystem_id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd"}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/attach-filesystem + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/attach-filesystem method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:17 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2ea03f96-b9d8-4c51-8b1d-4930ad86cd2a + - dd852bb0-0694-4c20-aec4-5cc6cd87f6cc status: 200 OK code: 200 - duration: 443.181069ms + duration: 437.869695ms - id: 15 request: proto: HTTP/1.1 @@ -530,28 +530,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:17 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3fb30b09-cfe6-46de-8c33-2606ff313d45 + - ba45542f-a726-436a-a194-f0c1387888c8 status: 200 OK code: 200 - duration: 108.559442ms + duration: 95.813191ms - id: 16 request: proto: HTTP/1.1 @@ -562,28 +562,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:22 GMT + - Wed, 25 Feb 2026 12:02:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5df5f6c6-839c-4abb-b9e2-9fb3001b9acb + - 4928a0d6-b6c2-4893-b6e7-061348bc39be status: 200 OK code: 200 - duration: 126.613667ms + duration: 89.957444ms - id: 17 request: proto: HTTP/1.1 @@ -594,28 +594,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:27 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0696f071-11e0-4407-b1bd-fd4d6b0d5310 + - dd890681-4de2-47d6-8dce-6d6cb1499aee status: 200 OK code: 200 - duration: 101.765735ms + duration: 88.420515ms - id: 18 request: proto: HTTP/1.1 @@ -626,28 +626,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:32 GMT + - Wed, 25 Feb 2026 12:02:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ad053bf3-615d-4a21-9f91-2a234b044b46 + - 49ee755a-5bdd-4935-ab5b-39b208680aaa status: 200 OK code: 200 - duration: 120.301495ms + duration: 107.98418ms - id: 19 request: proto: HTTP/1.1 @@ -658,28 +658,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:38 GMT + - Wed, 25 Feb 2026 12:02:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 97f39783-9764-4b47-8daa-2fe528b3aac3 + - 6644e7fc-7416-44f6-ae39-5f9749b5d820 status: 200 OK code: 200 - duration: 466.2097ms + duration: 87.662401ms - id: 20 request: proto: HTTP/1.1 @@ -690,28 +690,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:43 GMT + - Wed, 25 Feb 2026 12:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - bca4c056-507b-4745-8092-40e81fc13969 + - 9b972fd5-20e7-47ae-b340-cb57be785f96 status: 200 OK code: 200 - duration: 93.374668ms + duration: 94.01896ms - id: 21 request: proto: HTTP/1.1 @@ -722,28 +722,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:02:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 68c41a57-93bc-46b7-a327-e334f1fcd489 + - a75e192e-fa76-4eba-bbec-0126fc9b9538 status: 200 OK code: 200 - duration: 91.842008ms + duration: 68.779822ms - id: 22 request: proto: HTTP/1.1 @@ -754,28 +754,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:03:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 00280c60-ebf4-4261-8663-eae672bf5d54 + - ae299d0e-e2cd-4d66-85d4-7c1dd3e368be status: 200 OK code: 200 - duration: 101.431659ms + duration: 109.157768ms - id: 23 request: proto: HTTP/1.1 @@ -786,28 +786,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:03:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3792d7ce-8cad-4992-9756-b0b9c7e1ea15 - status: 404 Not Found - code: 404 - duration: 33.14316ms + - 6483eee7-99cd-47f3-a3bd-1e73f9536a52 + status: 200 OK + code: 200 + duration: 83.292604ms - id: 24 request: proto: HTTP/1.1 @@ -818,28 +818,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "705" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:03:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0c7643ae-ca4d-489b-9ee8-f5cb9e17d622 + - 1c2f91f9-c59f-4244-a353-a0d930b89418 status: 200 OK code: 200 - duration: 47.850392ms + duration: 105.300951ms - id: 25 request: proto: HTTP/1.1 @@ -850,28 +850,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "17" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:03:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e58fdb4e-7da3-41cc-8da5-99228eacc9e8 + - dafef47a-8580-4369-aafd-1aa422c66044 status: 200 OK code: 200 - duration: 55.247179ms + duration: 101.446108ms - id: 26 request: proto: HTTP/1.1 @@ -882,32 +882,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "20" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:03:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0f22d27f-5919-48e9-a196-89ce8990354f - X-Total-Count: - - "0" + - 175ecff1-e03b-4189-bd2c-700241a1728b status: 200 OK code: 200 - duration: 58.571411ms + duration: 109.597802ms - id: 27 request: proto: HTTP/1.1 @@ -918,28 +914,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:48 GMT + - Wed, 25 Feb 2026 12:03:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 55456007-09c5-4016-8da2-eb5703fe488a + - 38eb2c90-91e5-4643-9386-a34c2b3f364c status: 200 OK code: 200 - duration: 102.320334ms + duration: 114.190635ms - id: 28 request: proto: HTTP/1.1 @@ -950,28 +946,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "470" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 82e845ee-92e0-4566-88a4-a7e75cc92556 + - 72de3dca-e624-4006-9c90-d2dad54d3e83 status: 200 OK code: 200 - duration: 55.607611ms + duration: 68.175299ms - id: 29 request: proto: HTTP/1.1 @@ -982,28 +978,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - - "2211" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 289f2ddf-abcb-4b93-892a-431ece671214 - status: 200 OK - code: 200 - duration: 103.920894ms + - 8727b894-ccf4-441f-9dd9-8986ac33129e + status: 404 Not Found + code: 404 + duration: 41.41605ms - id: 30 request: proto: HTTP/1.1 @@ -1014,28 +1010,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9749df8e-8d77-4166-8678-4343735ec422 - status: 404 Not Found - code: 404 - duration: 33.355676ms + - b328187a-45c6-4587-9124-43d0b92712be + status: 200 OK + code: 200 + duration: 45.086766ms - id: 31 request: proto: HTTP/1.1 @@ -1046,28 +1042,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "705" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 798c2e30-0689-457b-959d-5c047d880335 + - bcb30cd3-7486-442c-abc7-176608fa9d49 status: 200 OK code: 200 - duration: 44.652025ms + duration: 64.408645ms - id: 32 request: proto: HTTP/1.1 @@ -1078,28 +1074,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "17" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4c93793d-8431-429a-8a2a-bceecf2c6d89 + - 0e3a0a48-1b40-4c0a-8124-ca9d43be07be + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 50.751446ms + duration: 66.482782ms - id: 33 request: proto: HTTP/1.1 @@ -1110,32 +1110,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "20" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 871ff8ee-1790-40fd-99d5-9109f57cf8c2 - X-Total-Count: - - "0" + - f0503b8b-9e6c-454d-b9ab-c1e2f0f008ab status: 200 OK code: 200 - duration: 74.620352ms + duration: 121.610777ms - id: 34 request: proto: HTTP/1.1 @@ -1146,28 +1142,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c7ca4570-66ef-49e3-b81a-94e17d83cd79 + - c948bb5c-7e80-41a0-9460-d4b1242836fb status: 200 OK code: 200 - duration: 42.267383ms + duration: 55.163782ms - id: 35 request: proto: HTTP/1.1 @@ -1178,28 +1174,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e2f593d7-3c76-42a2-a31a-aed17aa4796a + - c3afa44d-a74f-49cd-bc93-1b3b8d575def status: 200 OK code: 200 - duration: 117.227278ms + duration: 99.076426ms - id: 36 request: proto: HTTP/1.1 @@ -1210,28 +1206,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "143" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 56cc7c6f-d2ad-4f54-aa0f-5bd3ba0e33ea - status: 404 Not Found - code: 404 - duration: 25.572239ms + - 3491122d-847a-4a76-adc6-5e6706953007 + status: 200 OK + code: 200 + duration: 60.501184ms - id: 37 request: proto: HTTP/1.1 @@ -1242,28 +1238,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - - "705" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d8e38447-2207-4143-9391-ef6fad325df7 - status: 200 OK - code: 200 - duration: 42.693758ms + - dfb0f0ef-d49c-4005-b539-aa4dc4bbdd17 + status: 404 Not Found + code: 404 + duration: 35.693759ms - id: 38 request: proto: HTTP/1.1 @@ -1274,28 +1270,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 886d41d6-1cec-4d10-a1b8-5805d89a3dc6 + - 9e5d9ae8-174e-493a-914c-5cc0bfacad6e status: 200 OK code: 200 - duration: 44.765185ms + duration: 69.975299ms - id: 39 request: proto: HTTP/1.1 @@ -1306,67 +1302,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "20" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:49 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9cffc97e-5b31-4cd4-94f2-ca7490c6a2c6 - X-Total-Count: - - "0" + - c364f861-2fae-49e2-acc6-2c273b21adac status: 200 OK code: 200 - duration: 73.607254ms + duration: 42.344507ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 207 + content_length: 0 host: api.scaleway.com - body: '{"name":"filesystem-instance-terraform-test-2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":100000000000,"tags":["terraform-test","scaleway_instance_server","attach_detach_file_system","fs02"]}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 471 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "471" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:50 GMT + - Wed, 25 Feb 2026 12:03:26 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4ae835f6-ccad-4ab8-9309-7bad0cc088e6 + - 29f1c843-68f2-4a81-a183-2be0162d2e8f + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 209.037805ms + duration: 48.056079ms - id: 41 request: proto: HTTP/1.1 @@ -1377,28 +1370,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 471 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "471" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:50 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c41cf595-8831-4726-a35f-2a3e880c4370 + - 94537a1d-9ddb-44c2-a710-056d81602fff status: 200 OK code: 200 - duration: 47.728144ms + duration: 192.656631ms - id: 42 request: proto: HTTP/1.1 @@ -1409,28 +1402,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "472" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:55 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7532c9a4-bf56-40e6-b306-ab00033f93e1 + - c65a0ed8-5303-4197-beac-b6ae8100bae3 status: 200 OK code: 200 - duration: 66.163106ms + duration: 56.47896ms - id: 43 request: proto: HTTP/1.1 @@ -1441,28 +1434,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - - "472" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:55 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ddc339da-b952-47ae-92b4-d911da2a36b5 - status: 200 OK - code: 200 - duration: 47.57196ms + - ca565b34-430f-43d5-bdec-285597a8369c + status: 404 Not Found + code: 404 + duration: 105.825524ms - id: 44 request: proto: HTTP/1.1 @@ -1473,63 +1466,60 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2211" + - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:55 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fe3a42a2-ceb5-434a-86c9-0c807d75ce43 + - af5adbe6-1ed1-4e00-b7b2-cf28337fd4ea status: 200 OK code: 200 - duration: 100.712924ms + duration: 41.073949ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 56 + content_length: 0 host: api.scaleway.com - body: '{"filesystem_id":"629de258-67cc-4400-9e1d-bd8be3655339"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/detach-filesystem - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "2211" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:55 GMT + - Wed, 25 Feb 2026 12:03:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 56d52d34-a76d-47ae-9136-0c3948333094 + - c00015d5-6fee-47a1-85e0-80566b17e3ee status: 200 OK code: 200 - duration: 382.53277ms + duration: 82.471063ms - id: 46 request: proto: HTTP/1.1 @@ -1540,28 +1530,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "2211" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:40:55 GMT + - Wed, 25 Feb 2026 12:03:26 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c8d2437e-b4e6-4f87-a124-6082c08b6738 + - 3deff987-8569-4776-973e-7c76437b15ab + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 103.345797ms + duration: 51.407367ms - id: 47 request: proto: HTTP/1.1 @@ -1572,63 +1566,60 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2132 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 470 + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - - "2132" + - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:01 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0adde37d-f532-4547-8af1-1ba311bcc998 + - eb585636-d074-4ca1-bd29-3f28cd5fc462 status: 200 OK code: 200 - duration: 89.388175ms + duration: 54.868805ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 56 + content_length: 0 host: api.scaleway.com - body: '{"filesystem_id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/attach-filesystem - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:01 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7f513f90-abcf-470c-9c5a-80b8d5ce17ba + - 45647f57-3ecc-48b2-9084-ee064ed11c70 status: 200 OK code: 200 - duration: 684.737608ms + duration: 105.471519ms - id: 49 request: proto: HTTP/1.1 @@ -1639,28 +1630,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "2165" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:01 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3b9d02dc-1e89-4fb9-8ebc-2d882c72bb7c + - f40065fe-b6b4-453a-976e-8d3dd98b049f status: 200 OK code: 200 - duration: 86.705539ms + duration: 111.623369ms - id: 50 request: proto: HTTP/1.1 @@ -1671,28 +1662,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - - "2211" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:06 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d593349c-c3f2-4470-a74e-d266a09ce0f9 - status: 200 OK - code: 200 - duration: 107.630676ms + - 8b3d721e-cc79-413c-ab11-d848686515d5 + status: 404 Not Found + code: 404 + duration: 32.040934ms - id: 51 request: proto: HTTP/1.1 @@ -1703,28 +1694,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2165" + - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e8ecf90b-b91d-413e-9443-f20b0de04e50 + - 4725302f-2b67-48d3-ad4a-e699cab42dd4 status: 200 OK code: 200 - duration: 96.387286ms + duration: 53.618764ms - id: 52 request: proto: HTTP/1.1 @@ -1735,28 +1726,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "2211" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1ef0c270-32ef-4a63-badd-47b2ecca1216 + - 7de2840e-2590-43ea-a37c-97d0d63846d3 status: 200 OK code: 200 - duration: 99.897151ms + duration: 49.257458ms - id: 53 request: proto: HTTP/1.1 @@ -1767,60 +1758,67 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "143" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:27 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a0e437d3-2570-4ed1-86ca-e437119966bc - status: 404 Not Found - code: 404 - duration: 33.963491ms + - 399ff116-1db0-41cf-8928-4d56640b6c04 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 47.8511ms - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 207 host: api.scaleway.com + body: '{"name":"filesystem-instance-terraform-test-2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":100000000000,"tags":["terraform-test","scaleway_instance_server","attach_detach_file_system","fs02"]}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 - method: GET + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 471 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "705" + - "471" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 18ed0b0e-22c8-4de9-8273-b3eb94ee96bc + - eedc9f60-2efd-4009-86c3-28f2afcfbc8a status: 200 OK code: 200 - duration: 58.814662ms + duration: 156.38862ms - id: 55 request: proto: HTTP/1.1 @@ -1831,28 +1829,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 471 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"creating", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "17" + - "471" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 245725e8-3ec3-42a6-bbf1-403ce188ff0e + - cf9e363b-4585-47f6-a08a-a5cd2bd33377 status: 200 OK code: 200 - duration: 57.426697ms + duration: 46.116969ms - id: 56 request: proto: HTTP/1.1 @@ -1863,32 +1861,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "20" + - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:03:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0d80a6c0-cba3-4e98-8f11-7da32e226f86 - X-Total-Count: - - "0" + - 831ddc43-a01c-494a-9ae5-0b831d776e3c status: 200 OK code: 200 - duration: 71.059055ms + duration: 36.022055ms - id: 57 request: proto: HTTP/1.1 @@ -1899,28 +1893,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "2165" + - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e09af8ae-1356-41ea-9d82-b793031c8c64 + - 68588bb8-176f-42b3-98f2-98f9724bc104 status: 200 OK code: 200 - duration: 109.438319ms + duration: 36.886486ms - id: 58 request: proto: HTTP/1.1 @@ -1931,60 +1925,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "470" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0c7f0303-a60a-48db-a2f5-4851031ea489 + - eaf0f2f5-a35f-4cc9-bbb3-a38f996f3904 status: 200 OK code: 200 - duration: 40.510423ms + duration: 307.926596ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 56 host: api.scaleway.com + body: '{"filesystem_id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/detach-filesystem + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "472" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f7c85677-3e73-4823-aba0-e95dd4ad1792 + - 6540d1c6-211e-49a2-b957-55644f195701 status: 200 OK code: 200 - duration: 47.815838ms + duration: 353.62789ms - id: 60 request: proto: HTTP/1.1 @@ -1995,28 +1992,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 94f52a95-46ff-460c-8f4a-50961c5ba773 + - 2d0de0ec-b909-49ff-9fa9-66d016fc1df7 status: 200 OK code: 200 - duration: 84.865779ms + duration: 100.689859ms - id: 61 request: proto: HTTP/1.1 @@ -2027,60 +2024,63 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + content_length: 2086 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2086" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b2f8e880-2851-43de-9fb4-0d558e62642a - status: 404 Not Found - code: 404 - duration: 31.693704ms + - fcce3100-6882-4e70-bce6-f0a46661a180 + status: 200 OK + code: 200 + duration: 148.182346ms - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 56 host: api.scaleway.com + body: '{"filesystem_id":"36e3b340-52c8-4e5b-b060-d657ef706e33"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/attach-filesystem + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "705" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:07 GMT + - Wed, 25 Feb 2026 12:03:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - db4dcfe2-05ec-4d17-b385-e3b89cae1237 + - 89d2861f-7e06-4bd6-ade2-5be77dbb4da8 status: 200 OK code: 200 - duration: 67.806497ms + duration: 440.315434ms - id: 63 request: proto: HTTP/1.1 @@ -2091,28 +2091,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "17" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d5d4d118-7699-48d8-83c4-cb8f669e7f15 + - fe94f2c6-a956-4c32-87ba-20d41ca6f8dc status: 200 OK code: 200 - duration: 67.843768ms + duration: 82.727641ms - id: 64 request: proto: HTTP/1.1 @@ -2123,7 +2123,231 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9fe08972-9402-48f6-af44-f34c007da805 + status: 200 OK + code: 200 + duration: 130.01729ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c3737d12-e22d-4099-bfa0-9bed221b2958 + status: 200 OK + code: 200 + duration: 114.593544ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 38517380-fc4c-48c2-b311-46563dd13430 + status: 200 OK + code: 200 + duration: 101.575744ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a479fc68-ddc3-4a4c-95a6-0a9fae2fa4f9 + status: 200 OK + code: 200 + duration: 52.033659ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2fa6eeec-a145-4aca-af3e-5e36c663f958 + status: 404 Not Found + code: 404 + duration: 37.456602ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 50c08667-1f5c-487c-aca2-8e979e64aaaa + status: 200 OK + code: 200 + duration: 47.50108ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f9d230b2-b14f-4e93-9514-9d1ac52b302e + status: 200 OK + code: 200 + duration: 52.984969ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -2137,19 +2361,51 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f5fbb065-2d0b-474e-83d4-956191a4accb + - fdd42b8d-6c47-4754-9ec1-2e27a4988606 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 70.206196ms - - id: 65 + duration: 71.891621ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ba189355-576c-4aa4-85c2-0c57fc777c5d + status: 200 OK + code: 200 + duration: 102.428591ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2159,29 +2415,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 01d7baa9-ae4e-4596-b550-0fbed9924315 + - f7e56f00-ae88-4836-aa8c-fed4e21ce916 status: 200 OK code: 200 - duration: 50.523902ms - - id: 66 + duration: 48.06711ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2191,29 +2447,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b69afae9-3d77-46c9-8266-b2acaedec9f9 + - a16d9af8-7f3d-4273-b1a2-5b57101f6514 status: 200 OK code: 200 - duration: 78.851256ms - - id: 67 + duration: 54.874775ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2223,29 +2479,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 823dbde4-769d-4a47-a4d5-a98f3e51fe60 + - 98584833-8090-4183-b618-c695714cf8a6 status: 200 OK code: 200 - duration: 87.663126ms - - id: 68 + duration: 99.795897ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1537bab3-bf4f-4606-abbd-05a4a2be1d05 + status: 200 OK + code: 200 + duration: 55.157064ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2255,29 +2543,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ded80913-e258-4fa0-ab0a-79aca0d864f2 + - 2b1d0ef6-0af1-41e5-92c1-06706a1a5914 status: 404 Not Found code: 404 - duration: 34.004978ms - - id: 69 + duration: 32.051065ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2287,29 +2575,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 99ada36b-d76e-4d55-9dd2-23269374e723 + - 33cf117e-b96d-4da7-bdf5-1f0f45ad0ecd status: 200 OK code: 200 - duration: 52.76229ms - - id: 70 + duration: 63.94977ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2319,7 +2607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -2333,15 +2621,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1c6ba7ef-9986-4bd6-a7f6-7d29a99fec59 + - b9fda30a-dd3d-4ad1-8d1b-5420c0a18780 status: 200 OK code: 200 - duration: 71.967305ms - - id: 71 + duration: 52.207347ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2351,7 +2639,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -2365,19 +2653,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:45 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 08c47c53-db9c-4383-92b2-7f36dae8eac5 + - 6db3be27-635d-4921-8e37-251c6b5e0804 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.596204ms - - id: 72 + duration: 50.340112ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2387,64 +2675,552 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8b0f1081-3cd8-4b70-a219-648a4ca6b7b2 + status: 200 OK + code: 200 + duration: 85.13353ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 67a592ae-3c90-47e0-b72a-759a5daa18be + status: 200 OK + code: 200 + duration: 69.421264ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a432d486-d5ac-4126-ac6b-332b8ea93f7b + status: 404 Not Found + code: 404 + duration: 38.726945ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1e0e4fa8-021a-4146-9365-aa8892bbe6c2 + status: 200 OK + code: 200 + duration: 46.724589ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 839365fe-4d0a-492d-9291-9d42fc7bfeef + status: 200 OK + code: 200 + duration: 47.209752ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 58a714e6-72ea-482e-bab6-df59441e79d4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 51.583859ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' + headers: + Content-Length: + - "472" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5acfa5be-6769-4df6-875e-d940269b81a5 + status: 200 OK + code: 200 + duration: 53.438892ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 470 + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' + headers: + Content-Length: + - "470" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b8facda0-cbb5-4427-9593-db2fcb5672d0 + status: 200 OK + code: 200 + duration: 54.09631ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 732d2409-95bd-4d90-9617-86186759cd34 + status: 200 OK + code: 200 + duration: 93.327334ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d6e241dc-2f4a-4958-8079-f9568b789a8a + status: 200 OK + code: 200 + duration: 115.57375ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b10fa9d4-0b69-4328-b4b2-eede7a899479 + status: 404 Not Found + code: 404 + duration: 35.630419ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 705 + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f67e696c-6d51-4c2d-b969-a4e95385b175 + status: 200 OK + code: 200 + duration: 63.995991ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8a6eedb0-e0fc-4e7c-a8ad-81a7ff2d7437 + status: 200 OK + code: 200 + duration: 55.106358ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 23d70884-fbd2-498f-82ac-d5d47e90f469 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 60.435041ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2165" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 62abf4bd-541f-4d5b-b417-7bf1a7f2c2c2 + status: 200 OK + code: 200 + duration: 92.829095ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 56 + host: api.scaleway.com + body: '{"filesystem_id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/attach-filesystem + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:08 GMT + - Wed, 25 Feb 2026 12:03:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0914dfd3-7457-4a1c-a695-a167a82a6b08 + - 9dc62124-663e-40a5-aa09-cfd455e1993d status: 200 OK code: 200 - duration: 101.596385ms - - id: 73 + duration: 835.141252ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 56 + content_length: 0 host: api.scaleway.com - body: '{"filesystem_id":"629de258-67cc-4400-9e1d-bd8be3655339"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/attach-filesystem - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2246 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "attaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:09 GMT + - Wed, 25 Feb 2026 12:03:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8665c896-29f2-487f-87f5-1910482335e8 + - 505e0696-f3eb-4a79-9d00-98c7fa7659aa status: 200 OK code: 200 - duration: 690.059956ms - - id: 74 + duration: 81.084105ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -2454,29 +3230,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "attaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2292" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:09 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 542a79d8-18d7-43be-a9f9-b8cb90ea4d11 + - 16208981-25f1-406e-b655-26091e9cdbc3 status: 200 OK code: 200 - duration: 85.123375ms - - id: 75 + duration: 100.52803ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -2486,29 +3262,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2246 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:14 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d6cf1f66-bca6-4da0-8197-7f52947cf108 + - 72a2055f-9311-41bf-b3d1-13d8b689157d status: 200 OK code: 200 - duration: 88.476486ms - - id: 76 + duration: 96.001123ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -2518,29 +3294,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2292" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4cb7f0d8-c18b-46f6-97e1-64a4398ff2cd + - af517a03-c7c5-4782-b38c-a0b19868cdbc status: 200 OK code: 200 - duration: 321.607266ms - - id: 77 + duration: 98.124178ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -2550,29 +3326,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "2292" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7cc61961-0c16-4b72-a015-39426281f630 + - 9b84e133-4001-4b91-a12e-1609e22186f6 status: 200 OK code: 200 - duration: 90.726746ms - - id: 78 + duration: 48.359477ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -2582,29 +3358,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d2556d5b-c3f8-412d-ae2b-ccc088d1cf4d + - 5a3b591d-145a-46b5-8411-f93a879e7b58 status: 404 Not Found code: 404 - duration: 26.977619ms - - id: 79 + duration: 36.240334ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -2614,29 +3390,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 639bec2b-60af-477c-ab3d-236a8f5bcfab + - d8196b95-d20c-4880-9998-cbc8f460a459 status: 200 OK code: 200 - duration: 40.239506ms - - id: 80 + duration: 44.134766ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,7 +3422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -2660,15 +3436,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - baa0a5ca-e032-4e2e-92b5-939db46653c1 + - 519a820a-f98e-4714-b2fa-7a766d79eee2 status: 200 OK code: 200 - duration: 39.999028ms - - id: 81 + duration: 50.064623ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -2678,7 +3454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -2692,19 +3468,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7545cf13-ee8a-4c14-976c-460ad4ff2e14 + - 93b8e4fa-c414-45d4-aebc-f11d202c4de8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 45.691319ms - - id: 82 + duration: 55.561074ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -2714,29 +3490,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2246 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 49eee990-feeb-473a-add5-eef6ac111ea3 + - 8344f87e-2275-42ec-b21d-b70cd06fc9a0 status: 200 OK code: 200 - duration: 99.587086ms - - id: 83 + duration: 82.801209ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' + headers: + Content-Length: + - "472" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c2d0274e-bb96-4037-b445-5051623c8ef4 + status: 200 OK + code: 200 + duration: 63.114406ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -2746,29 +3554,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3a3ad3ea-69be-40b1-99df-a6e38b2575bc + - 0ade0f5c-cd50-4866-8bf7-479bd4c7b3b9 status: 200 OK code: 200 - duration: 50.73965ms - - id: 84 + duration: 74.283401ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -2778,29 +3586,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "472" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 57c31012-d4af-420f-95f0-3a4363b383be + - d402d741-b6ec-49d7-a92e-2a9f2bb91a63 status: 200 OK code: 200 - duration: 52.34523ms - - id: 85 + duration: 89.402833ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -2810,29 +3618,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' headers: Content-Length: - - "2292" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fe9b4bea-1171-46a9-8ee0-1a4de299af30 + - f052caee-d9c2-4828-a81e-72c9d3051028 status: 200 OK code: 200 - duration: 87.973037ms - - id: 86 + duration: 60.101814ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -2842,29 +3650,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c1b3a852-3f50-4063-ab40-a88108bbe143 + - 6fc17bcc-19bb-4ad6-a22b-be97848e4c77 status: 404 Not Found code: 404 - duration: 23.506705ms - - id: 87 + duration: 29.03035ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -2874,29 +3682,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c3fcc857-eca6-4847-8380-128c53861045 + - 7e061acf-a9f1-4d78-a030-33dc323cf0d9 status: 200 OK code: 200 - duration: 53.13478ms - - id: 88 + duration: 42.654201ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -2906,7 +3714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -2920,15 +3728,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 784fedd2-4dbc-4fd0-bd96-25526fa4add9 + - 21fc72e2-1a50-4318-b0b2-dc18768cb783 status: 200 OK code: 200 - duration: 46.27713ms - - id: 89 + duration: 40.857075ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -2938,7 +3746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -2952,19 +3760,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:15 GMT + - Wed, 25 Feb 2026 12:03:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 255658af-2051-4c44-a51c-f793a726c713 + - 3e4819a6-bf9a-4561-adaa-e49b38648f04 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.058475ms - - id: 90 + duration: 42.633062ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -2974,29 +3782,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 470 + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - - "472" + - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - edc69c59-8895-402f-aa0d-ec1276ec4d76 + - a7e7513d-3617-44ab-b88f-b8c4f2539188 status: 200 OK code: 200 - duration: 31.746059ms - - id: 91 + duration: 325.830394ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -3006,29 +3814,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "470" + - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e174640c-b3b4-47dd-b4be-c46e19ebe8e1 + - 50861555-251c-4550-a372-0d79c8f618ed status: 200 OK code: 200 - duration: 44.440649ms - - id: 92 + duration: 325.835314ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -3038,29 +3846,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2246 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 32dfa574-17bc-47ce-afe1-0b81a25aaebc + - 9037344e-e159-4de0-99f3-7d456cc473cb status: 200 OK code: 200 - duration: 112.212836ms - - id: 93 + duration: 88.835587ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:03:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f467bece-692d-4ed8-b04e-6bff87e68e48 + status: 200 OK + code: 200 + duration: 50.78776ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -3070,29 +3910,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 52d2439b-f983-48bc-a60a-6f2bfa825879 + - b521acf6-b417-4ca5-8c45-affd5c851b3d status: 404 Not Found code: 404 - duration: 28.130827ms - - id: 94 + duration: 35.949357ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -3102,29 +3942,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 82b61844-5663-44d1-a5cc-76bd45e1a0e0 + - ec92c9f5-2a89-43aa-9050-d7c4694a85c8 status: 200 OK code: 200 - duration: 54.159498ms - - id: 95 + duration: 44.516484ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -3134,7 +3974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -3148,15 +3988,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b663ddc0-2a50-4678-b116-1dcf76a073db + - 7db84bf0-101e-4714-a624-7ffb1e9f7384 status: 200 OK code: 200 - duration: 48.208466ms - - id: 96 + duration: 48.427819ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -3166,7 +4006,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -3180,19 +4020,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - addcca58-0c83-4ea6-99f8-272c93a4d98c + - 5630e3a0-1af1-4983-abab-559fa0514210 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.375287ms - - id: 97 + duration: 54.579555ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -3202,36 +4042,36 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2246 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4ebfb189-20eb-4d3e-b8e7-da83dbc3acce + - 55341118-2107-49e0-8b3f-de66d24c510d status: 200 OK code: 200 - duration: 75.739816ms - - id: 98 + duration: 88.413891ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 151 + content_length: 156 host: api.scaleway.com - body: '{"name":"tf-volume-gifted-aryabhata","perf_iops":15000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":15000000000},"tags":[]}' + body: '{"name":"tf-volume-gracious-visvesvaraya","perf_iops":15000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":15000000000},"tags":[]}' headers: Content-Type: - application/json @@ -3243,23 +4083,23 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 425 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 430 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "430" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 20a4b8e9-8edc-4055-879b-7ee201ea86e8 + - c1e0129d-3dcb-43b6-89c3-8f2ba0fedece status: 200 OK code: 200 - duration: 171.370804ms - - id: 99 + duration: 121.176065ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -3269,64 +4109,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 425 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 430 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"creating", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "430" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:16 GMT + - Wed, 25 Feb 2026 12:03:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8051c824-5a6b-4771-a3b8-81fb58be99ec + - 62208dbd-bec7-4e4b-b62f-936ce5dfe51a status: 200 OK code: 200 - duration: 38.973968ms - - id: 100 + duration: 40.11603ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 56 host: api.scaleway.com - body: '{"filesystem_id":"629de258-67cc-4400-9e1d-bd8be3655339"}' + body: '{"filesystem_id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd"}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/detach-filesystem + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/detach-filesystem method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2292" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:17 GMT + - Wed, 25 Feb 2026 12:03:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 433e6deb-99c8-43a1-8f65-c9bb78c5c2d2 + - b2244478-b5b9-46ea-80d6-1a2e8f93cf02 status: 200 OK code: 200 - duration: 327.762623ms - - id: 101 + duration: 348.059777ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -3336,29 +4176,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2292 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}, {"filesystem_id": "629de258-67cc-4400-9e1d-bd8be3655339", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2246 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}, {"filesystem_id": "10c3461c-7b2d-406a-a46d-59ba00ef49bd", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2292" + - "2246" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:17 GMT + - Wed, 25 Feb 2026 12:03:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e1d36fec-4787-4080-8acb-98a49b9d3b70 + - 8919145f-8636-422e-8c1b-75d2d38cf3b8 status: 200 OK code: 200 - duration: 81.281515ms - - id: 102 + duration: 88.130177ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -3368,29 +4208,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 426 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 431 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "431" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:21 GMT + - Wed, 25 Feb 2026 12:04:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a8726ed9-d9ca-44ba-b003-2475ba5d3b21 + - 9da2c649-c935-4064-bf67-dc8a08ac8cba status: 200 OK code: 200 - duration: 34.20641ms - - id: 103 + duration: 37.722562ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -3400,29 +4240,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 426 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 431 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "431" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:21 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - df569ca4-2d49-4cae-b6d2-cec14834e944 + - 6f976808-1a5e-447b-981f-fb0d8a9fb3bc status: 200 OK code: 200 - duration: 43.706479ms - - id: 104 + duration: 52.160909ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -3432,29 +4272,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5e19a9b7-c5ce-47b2-9118-606ed06f223e + - ca9248fb-7c0e-47da-ae3b-51bc0cda30e5 status: 200 OK code: 200 - duration: 90.958941ms - - id: 105 + duration: 226.058219ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -3464,29 +4304,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2397e0b0-1735-42d7-83c0-14043dd6716d + - 27303196-e47b-4efe-a9a2-03ccd49d3bdc status: 200 OK code: 200 - duration: 104.256694ms - - id: 106 + duration: 101.653997ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -3496,29 +4336,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2211 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2165 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2211" + - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d02bf6af-4e32-4414-be93-88ada4247d8b + - a9db3f7e-6a55-4186-b6b4-bbdc93da25a3 status: 200 OK code: 200 - duration: 98.031843ms - - id: 107 + duration: 117.861668ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:04:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 25be0a4b-1761-4f78-aa25-ec6c430a2340 + status: 200 OK + code: 200 + duration: 51.094846ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -3528,29 +4400,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8bc2f1a0-5bce-4646-b816-ff0ed21071f2 + - 495e4a9b-3d7e-4870-a01f-59c69670574a status: 404 Not Found code: 404 - duration: 28.470827ms - - id: 108 + duration: 50.975848ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -3560,29 +4432,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - bb6ec43e-5d1e-403c-9ee1-92bfe01c82b0 + - b518bd89-184d-4d10-a8e9-e30fd47d2151 status: 200 OK code: 200 - duration: 40.048738ms - - id: 109 + duration: 56.889554ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -3592,7 +4464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -3606,15 +4478,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a03c3c58-5418-4a70-ab7c-5fbabc731c19 + - f7fc99af-f848-42a8-957a-86b55a46bc6e status: 200 OK code: 200 - duration: 43.972345ms - - id: 110 + duration: 46.141095ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -3624,7 +4496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -3638,19 +4510,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ba31b908-ec8d-49d3-a769-130fc922f818 + - d7972270-9e8b-4b98-945e-01ea7aa23355 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 47.005353ms - - id: 111 + duration: 52.442355ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -3660,29 +4532,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fc4dd836-1e08-42a4-b5eb-3ad6872d5049 + - 7d2523d3-b2b6-4f30-83f7-2c40ac726583 status: 200 OK code: 200 - duration: 87.895156ms - - id: 112 + duration: 103.982248ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -3692,29 +4564,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + content_length: 472 + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - - "470" + - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a0ff89c5-74fc-4092-914f-8a159155f609 + - 2f05844a-75c0-4db5-aaf0-4c1227022fe7 status: 200 OK code: 200 - duration: 38.148019ms - - id: 113 + duration: 31.908207ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -3724,29 +4596,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":1, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + content_length: 431 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "472" + - "431" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9cbcd578-bfeb-4816-9faa-66921dbc2db9 + - d49db3ad-4c98-476f-841b-e01993525be3 status: 200 OK code: 200 - duration: 53.532477ms - - id: 114 + duration: 34.529788ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -3756,29 +4628,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 426 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 470 + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - - "426" + - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:22 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c193f3d0-18a5-4623-81aa-ea05753ac9a1 + - cc9801e0-cdfa-40e3-8035-dd454d15d8bc status: 200 OK code: 200 - duration: 54.998517ms - - id: 115 + duration: 58.183242ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -3788,29 +4660,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "available"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "available"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - eb26b0ff-5eb4-4e93-b532-c7a0a06bd383 + - a9750346-43b3-4fed-b250-33079cbf7bc8 status: 200 OK code: 200 - duration: 281.234136ms - - id: 116 + duration: 89.438447ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"6d3c053e-c728-4294-b23a-560b62a4d592", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_jammy", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:04:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 008c1b32-6e5e-45e3-85be-85a77871bcd8 + status: 200 OK + code: 200 + duration: 50.218423ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -3820,29 +4724,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e4cdad39-dca7-43dd-a50d-33b42dad7126 + - 40f25b36-d7a7-4d84-b150-0644604a9a09 status: 404 Not Found code: 404 - duration: 27.104452ms - - id: 117 + duration: 33.442428ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -3852,29 +4756,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 705 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:40:10.132208Z", "references":[{"id":"6684f44c-f89e-4733-8fc3-62b163362a07", "product_resource_type":"instance_server", "product_resource_id":"5174be88-a79b-46ff-bfb8-3f9d534dd624", "created_at":"2026-02-23T17:40:10.132208Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:02:22.257499Z", "references":[{"id":"375fe183-ad95-43e8-8d6d-45172c7c1f42", "product_resource_type":"instance_server", "product_resource_id":"39189ea4-6513-4126-a24c-25064cfdbc3b", "created_at":"2026-02-25T12:02:22.257499Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "705" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2b72763a-15f4-4ef5-86cc-0682db7eee3c + - 139fd3ce-7625-4a49-9795-73163e9724c3 status: 200 OK code: 200 - duration: 249.511423ms - - id: 118 + duration: 40.165493ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -3884,7 +4788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/user_data method: GET response: proto: HTTP/2.0 @@ -3898,15 +4802,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 19e29b42-1607-4261-90f2-17f5fdddb667 + - 703fc489-7ffb-4b3d-9206-0fa8a3fcccbb status: 200 OK code: 200 - duration: 49.521647ms - - id: 119 + duration: 50.34153ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -3916,7 +4820,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/private_nics method: GET response: proto: HTTP/2.0 @@ -3930,19 +4834,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2b2dfbcd-f8f9-47b6-a319-fee33f31b1f4 + - 07ca95b6-5572-4ae8-9653-d923bfe8ee3b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 47.236934ms - - id: 120 + duration: 44.79073ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -3952,29 +4856,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 426 - body: '{"id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03", "name":"tf-volume-gifted-aryabhata", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:41:16.694156Z", "updated_at":"2026-02-23T17:41:16.694156Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 431 + body: '{"id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b", "name":"tf-volume-gracious-visvesvaraya", "type":"sbs_15k", "size":15000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:03:55.846967Z", "updated_at":"2026-02-25T12:03:55.846967Z", "references":[], "parent_snapshot_id":null, "status":"available", "tags":[], "specs":{"perf_iops":15000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "431" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5b51f98a-71bc-4f11-a25f-70db0b2e7ec9 + - a1376772-8bd5-43a2-bb9c-2598d21f598b status: 200 OK code: 200 - duration: 34.764878ms - - id: 121 + duration: 48.362528ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -3984,29 +4888,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 470 - body: '{"id":"629de258-67cc-4400-9e1d-bd8be3655339", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:04.365059Z", "updated_at":"2026-02-23T17:40:04.365059Z"}' + body: '{"id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd", "name":"filesystem-instance-terraform-test", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs01"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:02:16.632933Z", "updated_at":"2026-02-25T12:02:16.632933Z"}' headers: Content-Length: - "470" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9062c314-bf1e-4789-9c6a-e182a2978c30 + - e6269152-82db-4dee-99f9-13cfee4e76e8 status: 200 OK code: 200 - duration: 34.752355ms - - id: 122 + duration: 49.255801ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -4016,7 +4920,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: DELETE response: proto: HTTP/2.0 @@ -4028,15 +4932,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 224b187f-1b57-4e7d-b856-b84e469ccb48 + - 1cb8bd8f-28c6-4c9b-a87a-04390e2ea811 status: 204 No Content code: 204 - duration: 81.124557ms - - id: 123 + duration: 84.244251ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -4046,7 +4950,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: DELETE response: proto: HTTP/2.0 @@ -4058,15 +4962,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f0aded03-9e29-42ee-a2fb-6c21835e7ebc + - 899cfab6-06e2-4581-9a6b-71229f1b3a10 status: 204 No Content code: 204 - duration: 83.745879ms - - id: 124 + duration: 85.647933ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -4076,29 +4980,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b5c7650d-a856-4913-8ce1-c3b2df9c5c03 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/79c7c4cc-352f-4f68-bafd-97b0d219b54b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 127 - body: '{"message":"resource is not found","resource":"volume","resource_id":"b5c7650d-a856-4913-8ce1-c3b2df9c5c03","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"79c7c4cc-352f-4f68-bafd-97b0d219b54b","type":"not_found"}' headers: Content-Length: - "127" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - cc3fa074-2822-4e17-8f66-8968a0368738 + - df72f95f-787e-401e-ba4d-c1aad428aa91 status: 404 Not Found code: 404 - duration: 32.428207ms - - id: 125 + duration: 49.821762ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -4108,64 +5012,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/629de258-67cc-4400-9e1d-bd8be3655339 + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/10c3461c-7b2d-406a-a46d-59ba00ef49bd method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 131 - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"629de258-67cc-4400-9e1d-bd8be3655339","type":"not_found"}' + body: '{"message":"resource is not found","resource":"filesystem","resource_id":"10c3461c-7b2d-406a-a46d-59ba00ef49bd","type":"not_found"}' headers: Content-Length: - "131" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:23 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 50114e54-28e0-4024-a3a5-e1136f0aa7de + - 4826380c-6b63-40fd-86a1-7081b7d8c5c8 status: 404 Not Found code: 404 - duration: 38.431176ms - - id: 126 + duration: 59.260702ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 56 host: api.scaleway.com - body: '{"filesystem_id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb"}' + body: '{"filesystem_id":"36e3b340-52c8-4e5b-b060-d657ef706e33"}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/detach-filesystem + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/detach-filesystem method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:24 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3a1d26de-6598-4145-9e0f-8c332a4aa37b + - 6e9bd9df-81f1-435f-a0b7-2ba9a95fe785 status: 200 OK code: 200 - duration: 374.997447ms - - id: 127 + duration: 435.398124ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -4175,29 +5079,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2165 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "f0a28751-24c8-4581-90f8-7dfb449ee0fb", "state": "detaching"}], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [{"filesystem_id": "36e3b340-52c8-4e5b-b060-d657ef706e33", "state": "detaching"}], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2165" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:24 GMT + - Wed, 25 Feb 2026 12:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 31298447-a8b9-47f9-a05d-b24a8f202cd0 + - d31a7a48-8c63-46e7-8e35-12b19ff2d696 status: 200 OK code: 200 - duration: 75.928501ms - - id: 128 + duration: 102.873585ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -4207,29 +5111,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2132 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud", "admin_password_encryption_ssh_key_id": null}}' + content_length: 2086 + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2132" + - "2086" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:29 GMT + - Wed, 25 Feb 2026 12:04:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 78c7a939-c87c-4369-818f-56ff6fe4576a + - 7e374820-f2ed-4486-ba8b-790b77ef80af status: 200 OK code: 200 - duration: 75.496252ms - - id: 129 + duration: 85.66892ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -4239,29 +5143,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2086 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2086" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:29 GMT + - Wed, 25 Feb 2026 12:04:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 40f3dfbe-9eac-4a92-b2e9-3b1e1fd5d1f9 + - 9d494660-c4a8-42dd-8563-ca06539d36d5 status: 200 OK code: 200 - duration: 92.463797ms - - id: 130 + duration: 92.214608ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -4271,29 +5175,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2086 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:40:12.938473+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:02:25.032966+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2086" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:29 GMT + - Wed, 25 Feb 2026 12:04:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e1957c07-3fb2-4950-80a2-84030f410710 + - c01091c7-c922-42d5-abbe-279dde8b483f status: 200 OK code: 200 - duration: 90.143777ms - - id: 131 + duration: 90.134864ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -4306,31 +5210,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "8cbaf965-c844-448a-b2e5-4065c808a6e3", "description": "server_terminate", "status": "pending", "href_from": "/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624/action", "href_result": "/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624", "started_at": "2026-02-23T17:41:29.668961+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "58e18ec2-56fa-4cce-b8cc-fc9002e5416b", "description": "server_terminate", "status": "pending", "href_from": "/servers/39189ea4-6513-4126-a24c-25064cfdbc3b/action", "href_result": "/servers/39189ea4-6513-4126-a24c-25064cfdbc3b", "started_at": "2026-02-25T12:04:09.049897+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:29 GMT + - Wed, 25 Feb 2026 12:04:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8cbaf965-c844-448a-b2e5-4065c808a6e3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/58e18ec2-56fa-4cce-b8cc-fc9002e5416b Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 98173bd8-4895-416a-9b9c-14344afaa0f5 + - 63ec6245-96ba-49e1-90b5-0f5781915710 status: 202 Accepted code: 202 - duration: 162.528044ms - - id: 132 + duration: 188.648293ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -4340,29 +5244,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2049 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:41:29.558204+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:04:08.917409+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2049" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:29 GMT + - Wed, 25 Feb 2026 12:04:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 79631fde-1baf-4429-941a-945f32e28bf1 + - 114f168b-4209-45d3-9a72-d6e5e2c3ceae status: 200 OK code: 200 - duration: 88.054267ms - - id: 133 + duration: 82.150197ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -4372,29 +5276,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2049 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:41:29.558204+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:04:08.917409+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2049" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:34 GMT + - Wed, 25 Feb 2026 12:04:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3c3e2cee-f0b0-4daf-aa2c-a0822c008f43 + - d20ae33a-bf86-4790-964d-19f6ca6bf4a4 status: 200 OK code: 200 - duration: 109.425407ms - - id: 134 + duration: 87.264169ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -4404,29 +5308,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2049 - body: '{"server": {"id": "5174be88-a79b-46ff-bfb8-3f9d534dd624", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "b268579d-70b1-485f-a4e7-bdc92372e475", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:09:ff", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:40:09.986399+00:00", "modification_date": "2026-02-23T17:41:29.558204+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "61", "hypervisor_id": "901", "node_id": "12"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5174be88-a79b-46ff-bfb8-3f9d534dd624.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "39189ea4-6513-4126-a24c-25064cfdbc3b", "name": "tf-acc-server-attach-detach-file-system", "arch": "x86_64", "commercial_type": "POP2-HM-2C-16G", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-attach-detach-file-system", "image": {"id": "6d3c053e-c728-4294-b23a-560b62a4d592", "name": "Ubuntu 22.04 Jammy Jellyfish", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "36b4ce54-c67a-4f68-ab74-839515834352", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:11:41.420846+00:00", "modification_date": "2025-09-12T09:11:41.420846+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "d4d27012-a891-44bb-a498-8a3d0f4eae47", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "attach_detach_file_system"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:eb", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:22.117621+00:00", "modification_date": "2026-02-25T12:04:08.917409+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "18", "hypervisor_id": "601", "node_id": "13"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "39189ea4-6513-4126-a24c-25064cfdbc3b.pub.instances.scw.cloud"}}' headers: Content-Length: - "2049" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:39 GMT + - Wed, 25 Feb 2026 12:04:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f4d97df2-5840-454e-a26e-c9f866aedc82 + - e74b31b9-5002-4596-98f7-94c92b058504 status: 200 OK code: 200 - duration: 85.749438ms - - id: 135 + duration: 92.800728ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -4436,29 +5340,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5174be88-a79b-46ff-bfb8-3f9d534dd624"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "39189ea4-6513-4126-a24c-25064cfdbc3b"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b358471c-855d-423b-a7c4-e21f4fef9740 + - 94ec56c8-fd9d-409d-b8de-8c730cfe5715 status: 404 Not Found code: 404 - duration: 60.971436ms - - id: 136 + duration: 51.613958ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -4468,29 +5372,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "b268579d-70b1-485f-a4e7-bdc92372e475"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "d4d27012-a891-44bb-a498-8a3d0f4eae47"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - df9e1d63-ea75-4b46-9c73-a506fafcb38a + - b7a530a1-9cd9-4c69-bf9b-e80d543b3d0d status: 404 Not Found code: 404 - duration: 66.943367ms - - id: 137 + duration: 31.182934ms + - id: 165 request: proto: HTTP/1.1 proto_major: 1 @@ -4500,29 +5404,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 498 - body: '{"id":"b268579d-70b1-485f-a4e7-bdc92372e475", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:40:10.132208Z", "updated_at":"2026-02-23T17:41:40.713247Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-23T17:41:40.713247Z", "zone":"fr-par-1"}' + body: '{"id":"d4d27012-a891-44bb-a498-8a3d0f4eae47", "name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:22.257499Z", "updated_at":"2026-02-25T12:04:20.112086Z", "references":[], "parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-25T12:04:20.112086Z", "zone":"fr-par-1"}' headers: Content-Length: - "498" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 975078d3-d0fb-40e3-abd3-42ee57e06690 + - 57119a5d-11e6-4bac-b952-9947d3148fe5 status: 200 OK code: 200 - duration: 63.514601ms - - id: 138 + duration: 44.587239ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -4532,7 +5436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b268579d-70b1-485f-a4e7-bdc92372e475 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d4d27012-a891-44bb-a498-8a3d0f4eae47 method: DELETE response: proto: HTTP/2.0 @@ -4544,15 +5448,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2db341f5-63f8-4412-ae10-9be6427c9624 + - 1b8d49ec-8581-4b02-ae5a-1de5d6a3a9f9 status: 204 No Content code: 204 - duration: 86.604634ms - - id: 139 + duration: 99.431227ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -4562,29 +5466,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 472 - body: '{"id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-23T17:40:50.047796Z", "updated_at":"2026-02-23T17:40:50.047796Z"}' + body: '{"id":"36e3b340-52c8-4e5b-b060-d657ef706e33", "name":"filesystem-instance-terraform-test-2", "size":100000000000, "status":"available", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "tags":["terraform-test", "scaleway_instance_server", "attach_detach_file_system", "fs02"], "number_of_attachments":0, "region":"fr-par", "created_at":"2026-02-25T12:03:27.802319Z", "updated_at":"2026-02-25T12:03:27.802319Z"}' headers: Content-Length: - "472" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - eefa92c5-d5df-4770-b7b4-ab71f5240d86 + - 5b545e5f-a246-482c-9845-32171f85756f status: 200 OK code: 200 - duration: 46.982689ms - - id: 140 + duration: 52.001531ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -4594,7 +5498,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: DELETE response: proto: HTTP/2.0 @@ -4606,15 +5510,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 886ff75d-4b64-4987-aaa4-29bb4aa339bb + - 30808b67-e873-40d9-a3f9-06918923b9f5 status: 204 No Content code: 204 - duration: 83.807987ms - - id: 141 + duration: 82.082258ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -4624,29 +5528,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/f0a28751-24c8-4581-90f8-7dfb449ee0fb + url: https://api.scaleway.com/file/v1alpha1/regions/fr-par/filesystems/36e3b340-52c8-4e5b-b060-d657ef706e33 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 131 - body: '{"message":"resource is not found","resource":"filesystem","resource_id":"f0a28751-24c8-4581-90f8-7dfb449ee0fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"filesystem","resource_id":"36e3b340-52c8-4e5b-b060-d657ef706e33","type":"not_found"}' headers: Content-Length: - "131" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 643185f8-2cc7-4bbb-b9cf-3418a92553c7 + - 0e210fd7-ffd8-429c-a07d-be934ba6db84 status: 404 Not Found code: 404 - duration: 46.759053ms - - id: 142 + duration: 51.516109ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -4656,25 +5560,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5174be88-a79b-46ff-bfb8-3f9d534dd624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39189ea4-6513-4126-a24c-25064cfdbc3b method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5174be88-a79b-46ff-bfb8-3f9d534dd624"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "39189ea4-6513-4126-a24c-25064cfdbc3b"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:41:45 GMT + - Wed, 25 Feb 2026 12:04:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3b371fb4-9969-4603-bcae-56152daf8a00 + - fc711abd-88b1-44ab-a9d9-61b9619fcaa4 status: 404 Not Found code: 404 - duration: 51.30534ms + duration: 63.823929ms diff --git a/internal/services/instance/testdata/server-minimal.cassette.yaml b/internal/services/instance/testdata/server-minimal.cassette.yaml index b3e94cf6ea..1ab3a7633b 100644 --- a/internal/services/instance/testdata/server-minimal.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal.cassette.yaml @@ -28,18 +28,18 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:44 GMT + - Wed, 25 Feb 2026 11:40:40 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b2c7e284-fb22-4181-8f78-786e16debf18 + - 6bff4443-871d-4164-9ef7-56181b7e10d1 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 73.31799ms + duration: 94.835659ms - id: 1 request: proto: HTTP/1.1 @@ -67,18 +67,18 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:44 GMT + - Wed, 25 Feb 2026 11:40:40 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8a6b8b98-1665-4237-a915-0247d657f38d + - 70c61eaa-43c8-41b8-9d50-95c1216a3b6c X-Total-Count: - "76" status: 200 OK code: 200 - duration: 36.320786ms + duration: 45.320474ms - id: 2 request: proto: HTTP/1.1 @@ -112,14 +112,14 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:44 GMT + - Wed, 25 Feb 2026 11:40:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b4e80ee1-8ef6-49eb-977a-fad683bde060 + - 26254de7-018c-4879-90bc-50bb9784c456 status: 200 OK code: 200 - duration: 52.445484ms + duration: 55.235947ms - id: 3 request: proto: HTTP/1.1 @@ -140,23 +140,23 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:41.079846+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3dfcf967-add0-48e4-a66c-49cfcebb5c52 + - dccf203b-f8b7-4105-9cac-450d074d5745 status: 201 Created code: 201 - duration: 466.536541ms + duration: 543.744355ms - id: 4 request: proto: HTTP/1.1 @@ -167,28 +167,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:41.079846+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b42ee6bf-b75d-4bd3-bdee-283970e4f526 + - c5783178-f97d-4f71-a493-6d9d8f90607c status: 200 OK code: 200 - duration: 114.070379ms + duration: 99.473703ms - id: 5 request: proto: HTTP/1.1 @@ -199,28 +199,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1864 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:44.644572+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:41.079846+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "1864" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 242de2fa-8ef7-47c0-a06e-37711398dd5f + - b5caa883-2e28-4d39-aeb5-d7beac60c272 status: 200 OK code: 200 - duration: 98.954523ms + duration: 113.697383ms - id: 6 request: proto: HTTP/1.1 @@ -231,28 +231,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"83b947c8-5c75-4237-a7d2-76f6a40104e8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T11:40:41.214286Z", "updated_at":"2026-02-25T11:40:41.214286Z", "references":[{"id":"713739c1-054d-4da1-bb3d-75b76221e0a2", "product_resource_type":"instance_server", "product_resource_id":"e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "created_at":"2026-02-25T11:40:41.214286Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e92290bf-7ed6-4b15-bfc7-dfdea9f214a6 + - ee6b3562-a3fc-4a83-8b30-c621378f6226 status: 200 OK code: 200 - duration: 36.289827ms + duration: 40.652684ms - id: 7 request: proto: HTTP/1.1 @@ -266,30 +266,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "cbaecb17-4c55-4e22-b6f3-453790d7ffd0", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action", "href_result": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594", "started_at": "2026-02-24T12:41:45.517005+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "baf09185-d201-4e4d-9273-212b72eb2469", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/action", "href_result": "/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "started_at": "2026-02-25T11:40:41.994965+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cbaecb17-4c55-4e22-b6f3-453790d7ffd0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/baf09185-d201-4e4d-9273-212b72eb2469 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8d0db813-0e44-41ed-9303-956ec2cd4fab + - 208f3114-2cc7-4351-9849-7e59b5e7e1b8 status: 202 Accepted code: 202 - duration: 264.076771ms + duration: 229.20165ms - id: 8 request: proto: HTTP/1.1 @@ -300,28 +300,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1886 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:45.314378+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:41.824789+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "1886" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:45 GMT + - Wed, 25 Feb 2026 11:40:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - bf197626-02ab-49bc-9828-5c60f11cbc4b + - 0463b372-9f76-4ec3-8ca4-745eb229e854 status: 200 OK code: 200 - duration: 106.801854ms + duration: 112.016428ms - id: 9 request: proto: HTTP/1.1 @@ -332,28 +332,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:50 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 59f296b0-9444-42e4-a59d-4b409ff97264 + - 09065daa-dd72-4c09-a5f8-a0dd82ae1c72 status: 200 OK code: 200 - duration: 87.740306ms + duration: 118.158109ms - id: 10 request: proto: HTTP/1.1 @@ -364,28 +364,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:50 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d8b3ffbe-504f-4d24-8c1c-0a8177c46f10 + - b7babe4a-84be-40c1-bd12-052bdb4cb5ee status: 200 OK code: 200 - duration: 98.60046ms + duration: 101.588151ms - id: 11 request: proto: HTTP/1.1 @@ -396,29 +396,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 55f166c1-2905-4a49-acba-fa0f82a11c40 + status: 200 OK + code: 200 + duration: 62.58896ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "83b947c8-5c75-4237-a7d2-76f6a40104e8"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:50 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6bb3209a-ea10-4af7-b139-01853a1bfaf8 + - a46aa688-8d92-421d-8c49-7a9b844eee90 status: 404 Not Found code: 404 - duration: 32.595868ms - - id: 12 + duration: 38.922516ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -428,29 +460,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"83b947c8-5c75-4237-a7d2-76f6a40104e8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T11:40:41.214286Z", "updated_at":"2026-02-25T11:40:41.214286Z", "references":[{"id":"713739c1-054d-4da1-bb3d-75b76221e0a2", "product_resource_type":"instance_server", "product_resource_id":"e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "created_at":"2026-02-25T11:40:41.214286Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:50 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 41f23c34-a8d7-4549-a5a3-762d1bf2e9bb + - 2aca08c6-ad84-4553-ba60-84167bbe6fe1 status: 200 OK code: 200 - duration: 52.766056ms - - id: 13 + duration: 58.96362ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -460,7 +492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/user_data method: GET response: proto: HTTP/2.0 @@ -474,15 +506,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:50 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ed7d1c5f-f771-4894-90fd-01edaedd7a9d + - 007c6703-a78d-4e5a-9e67-6d5a875b780e status: 200 OK code: 200 - duration: 48.721099ms - - id: 14 + duration: 69.487649ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -492,7 +524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/private_nics method: GET response: proto: HTTP/2.0 @@ -506,19 +538,19 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2d48c0d2-261b-40e8-9c4e-a3d44948fc20 + - 0f01f8eb-7ad9-4285-9098-4497eb3881cc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.374712ms - - id: 15 + duration: 53.94828ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -528,29 +560,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 17bd059c-c919-4a56-a1bd-ca73e7b5ec96 + - d8566c9d-e635-46f5-b0ff-25359f8f24de status: 200 OK code: 200 - duration: 102.17742ms - - id: 16 + duration: 113.889077ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -560,29 +592,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - cd353e02-e6a8-49d3-b1e6-c9986790617c + - 63cd111f-ed17-4948-b645-dc079a3e9568 status: 200 OK code: 200 - duration: 116.969508ms - - id: 17 + duration: 87.006982ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 95ce44b8-bb9b-42e5-a8f8-875df896816f + status: 200 OK + code: 200 + duration: 102.779716ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -592,29 +656,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "83b947c8-5c75-4237-a7d2-76f6a40104e8"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - cf8bd0d7-8844-48ce-8e39-eb75ea3990ff + - 4a4cf0ce-2dee-40a3-a74d-821d484315ed status: 404 Not Found code: 404 - duration: 27.134163ms - - id: 18 + duration: 29.08958ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -624,29 +688,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:44.798687Z", "references":[{"id":"6465eee8-fb31-4dda-a8a6-bb569d58c74c", "product_resource_type":"instance_server", "product_resource_id":"393ec65d-8f92-4164-a797-4e3e5f834594", "created_at":"2026-02-24T12:41:44.798687Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"83b947c8-5c75-4237-a7d2-76f6a40104e8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T11:40:41.214286Z", "updated_at":"2026-02-25T11:40:41.214286Z", "references":[{"id":"713739c1-054d-4da1-bb3d-75b76221e0a2", "product_resource_type":"instance_server", "product_resource_id":"e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "created_at":"2026-02-25T11:40:41.214286Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5cc15937-894c-4396-ae14-ddc15d53ec6c + - 5858394c-4260-40ce-9d41-4594622f49af status: 200 OK code: 200 - duration: 45.357168ms - - id: 19 + duration: 44.201718ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -656,7 +720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/user_data method: GET response: proto: HTTP/2.0 @@ -670,15 +734,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c78b6123-2f13-4773-b02d-e8a57c52aee1 + - 78eb6afe-379b-439e-8acf-8890d112330e status: 200 OK code: 200 - duration: 55.883665ms - - id: 20 + duration: 65.153343ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -688,7 +752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/private_nics method: GET response: proto: HTTP/2.0 @@ -702,19 +766,19 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:51 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a4455738-6b24-4340-aecc-28944d4b5287 + - ac9c368d-0253-45c4-87b2-ecfac3a38992 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.38838ms - - id: 21 + duration: 69.946942ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -724,29 +788,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:52 GMT + - Wed, 25 Feb 2026 11:40:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d892e1e8-b6a3-4ab7-9cf8-4c1876f3dafc + - 549b19b0-6d2c-4956-be16-a8cc51c3d6d4 status: 200 OK code: 200 - duration: 90.853927ms - - id: 22 + duration: 89.381204ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -756,29 +820,225 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7f377bea-7979-4f2c-ac16-fe7220c75ae3 + status: 200 OK + code: 200 + duration: 48.767204ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "83b947c8-5c75-4237-a7d2-76f6a40104e8"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 16981ab8-698f-47e8-a1f0-b74ef142403a + status: 404 Not Found + code: 404 + duration: 32.041209ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"83b947c8-5c75-4237-a7d2-76f6a40104e8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T11:40:41.214286Z", "updated_at":"2026-02-25T11:40:41.214286Z", "references":[{"id":"713739c1-054d-4da1-bb3d-75b76221e0a2", "product_resource_type":"instance_server", "product_resource_id":"e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "created_at":"2026-02-25T11:40:41.214286Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 72bd0c7e-2c2e-4882-a3b5-592df0517316 + status: 200 OK + code: 200 + duration: 51.337669ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2081b04b-2033-4a5c-b39c-48d52b98f224 + status: 200 OK + code: 200 + duration: 53.395118ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bd81c987-3695-4268-bd32-778e0c519a96 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 53.959941ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2020 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:48.429568+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "2020" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:52 GMT + - Wed, 25 Feb 2026 11:40:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fd137c84-44fc-44a1-9caf-0118f5b84709 + - 3577bdfd-b9d3-4abb-bed3-b75f310cdd29 status: 200 OK code: 200 - duration: 91.554532ms - - id: 23 + duration: 97.159025ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2020 + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:44.788901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2020" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 11:40:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - cc516fce-0425-4fa5-95b6-5ee3a9cccc74 + status: 200 OK + code: 200 + duration: 74.621716ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -791,31 +1051,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: '{"task": {"id": "cb4d1453-dee6-475a-bd27-018c348e49ef", "description": "server_terminate", "status": "pending", "href_from": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594/action", "href_result": "/servers/393ec65d-8f92-4164-a797-4e3e5f834594", "started_at": "2026-02-24T12:41:52.263923+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "7ab2f46b-7b3c-4495-9f61-7fcdb8e871a3", "description": "server_terminate", "status": "pending", "href_from": "/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0/action", "href_result": "/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "started_at": "2026-02-25T11:40:49.704998+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "353" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:52 GMT + - Wed, 25 Feb 2026 11:40:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cb4d1453-dee6-475a-bd27-018c348e49ef + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7ab2f46b-7b3c-4495-9f61-7fcdb8e871a3 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b0316424-0f76-4bc6-b798-b45aa5e531c1 + - e1306abc-b6a1-43ec-ab7d-bd0544f68fca status: 202 Accepted code: 202 - duration: 226.617934ms - - id: 24 + duration: 206.333483ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -825,29 +1085,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1983 - body: '{"server": {"id": "393ec65d-8f92-4164-a797-4e3e5f834594", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:59:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-24T12:41:44.644572+00:00", "modification_date": "2026-02-24T12:41:52.132111+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "34", "hypervisor_id": "602", "node_id": "18"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "393ec65d-8f92-4164-a797-4e3e5f834594.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0", "name": "tf-acc-server-minimal", "arch": "x86_64", "commercial_type": "DEV1-S", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-minimal", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "83b947c8-5c75-4237-a7d2-76f6a40104e8", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "minimal"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c4:73", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T11:40:41.079846+00:00", "modification_date": "2026-02-25T11:40:49.553463+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "38", "hypervisor_id": "602", "node_id": "28"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0.pub.instances.scw.cloud"}}' headers: Content-Length: - "1983" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:52 GMT + - Wed, 25 Feb 2026 11:40:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 691799c9-79c2-4280-a2e5-6487d7f0c94f + - ca85df3c-ce88-499c-8602-3ed12c719c9f status: 200 OK code: 200 - duration: 80.598479ms - - id: 25 + duration: 79.628741ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -857,29 +1117,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "393ec65d-8f92-4164-a797-4e3e5f834594"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:57 GMT + - Wed, 25 Feb 2026 11:40:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 13457f03-ce84-46d4-a305-d8d1f8f7f934 + - 975d56cf-ae9a-4171-a358-167883b35a8e status: 404 Not Found code: 404 - duration: 59.627118ms - - id: 26 + duration: 60.43653ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -889,29 +1149,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "f09c961a-4fe2-4f84-bf89-814bc66d9a9d"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "83b947c8-5c75-4237-a7d2-76f6a40104e8"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:57 GMT + - Wed, 25 Feb 2026 11:40:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 58799ffc-1cd8-438d-b711-285d1d61e511 + - f065e2d3-e60f-4cf0-ba6f-cc5a181fb510 status: 404 Not Found code: 404 - duration: 38.86547ms - - id: 27 + duration: 28.124647ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -921,29 +1181,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 494 - body: '{"id":"f09c961a-4fe2-4f84-bf89-814bc66d9a9d", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-24T12:41:44.798687Z", "updated_at":"2026-02-24T12:41:53.557209Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-24T12:41:53.557209Z", "zone":"fr-par-1"}' + body: '{"id":"83b947c8-5c75-4237-a7d2-76f6a40104e8", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T11:40:41.214286Z", "updated_at":"2026-02-25T11:40:51.073442Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-25T11:40:51.073442Z", "zone":"fr-par-1"}' headers: Content-Length: - "494" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:57 GMT + - Wed, 25 Feb 2026 11:40:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4f5725ee-997b-4316-8a6d-a3447a653290 + - b649d211-1f61-4480-9bec-3b3c0a4033e2 status: 200 OK code: 200 - duration: 51.210188ms - - id: 28 + duration: 48.761804ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -953,7 +1213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f09c961a-4fe2-4f84-bf89-814bc66d9a9d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83b947c8-5c75-4237-a7d2-76f6a40104e8 method: DELETE response: proto: HTTP/2.0 @@ -965,15 +1225,15 @@ interactions: Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:57 GMT + - Wed, 25 Feb 2026 11:40:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3b39df05-dc09-4868-b872-88fd4ccaa39e + - c6fd3380-57b6-4db0-86ff-5be2f09557a7 status: 204 No Content code: 204 - duration: 110.621462ms - - id: 29 + duration: 124.440659ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -983,25 +1243,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/393ec65d-8f92-4164-a797-4e3e5f834594 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "393ec65d-8f92-4164-a797-4e3e5f834594"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "e7ad6d69-21f5-4e2c-9ae4-47b74da4dac0"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Tue, 24 Feb 2026 12:41:57 GMT + - Wed, 25 Feb 2026 11:40:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 38665ca1-7b50-4d9d-b129-396411eff3a2 + - 4aba278a-48f3-4b9d-86ee-39ed8f3be1f9 status: 404 Not Found code: 404 - duration: 47.860415ms + duration: 43.341042ms diff --git a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml index 1e7f2da6cf..536bea3cc8 100644 --- a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml +++ b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml @@ -6,9 +6,9 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 143 + content_length: 142 host: api.scaleway.com - body: '{"name":"tf-pg-sleepy-varahamihira","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_type":"max_availability"}' + body: '{"name":"tf-pg-reverent-sanderson","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_type":"max_availability"}' headers: Content-Type: - application/json @@ -20,24 +20,24 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 331 - body: '{"placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "331" + - "330" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/2792ef0d-1995-447c-a8fa-35dd7229d267 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 38898178-e4fc-48d8-b258-36f5f1d4a697 + - c30cd48c-faaa-4fc2-b050-3043d14318c9 status: 201 Created code: 201 - duration: 203.858804ms + duration: 308.224317ms - id: 1 request: proto: HTTP/1.1 @@ -48,28 +48,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/2792ef0d-1995-447c-a8fa-35dd7229d267 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 331 - body: '{"placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "331" + - "330" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 252e059f-37e3-42e0-af4c-a4cde614a355 + - c387f5a9-3627-410e-87f3-648fb358963b status: 200 OK code: 200 - duration: 71.623229ms + duration: 96.811751ms - id: 2 request: proto: HTTP/1.1 @@ -97,18 +97,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fcac0b29-d2a0-44a3-8327-e6a86fd8e684 + - 9f3a4ff1-a195-4722-89ad-7d52b55811df X-Total-Count: - "76" status: 200 OK code: 200 - duration: 40.553735ms + duration: 97.298088ms - id: 3 request: proto: HTTP/1.1 @@ -136,18 +136,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 41865e1d-72e0-47ee-8930-b929146d5ebc + - 33ef2dac-5a97-4345-a996-1e2ccdbe9641 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 35.211027ms + duration: 105.119294ms - id: 4 request: proto: HTTP/1.1 @@ -175,18 +175,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3902138c-3f73-4100-bb97-437691731745 + - c11aaa2d-0c81-4fbd-b195-892cb2c6388b X-Total-Count: - "76" status: 200 OK code: 200 - duration: 47.461174ms + duration: 111.652836ms - id: 5 request: proto: HTTP/1.1 @@ -214,18 +214,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f9a7b592-5a3d-4597-b34d-da0ac69591ef + - 316950bc-85e4-458b-a83f-71363174fa67 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 30.0894ms + duration: 32.122076ms - id: 6 request: proto: HTTP/1.1 @@ -253,18 +253,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ea7d972b-5c5b-477a-98fe-3f15cf55b206 + - ddbe8805-cf64-45d7-989a-4417eb7e1d45 X-Total-Count: - "76" status: 200 OK code: 200 - duration: 33.398776ms + duration: 34.956591ms - id: 7 request: proto: HTTP/1.1 @@ -292,18 +292,18 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 95e09c90-5d5b-48e0-a777-c8de46db84e2 + - 05258698-68fd-483b-8548-10285ac4b47e X-Total-Count: - "76" status: 200 OK code: 200 - duration: 35.675171ms + duration: 40.984251ms - id: 8 request: proto: HTTP/1.1 @@ -337,14 +337,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5258300c-a030-4010-b21c-4de1a83ddd5b + - 055174a7-b2ac-4077-9052-3813d93c040d status: 200 OK code: 200 - duration: 41.424034ms + duration: 64.174285ms - id: 9 request: proto: HTTP/1.1 @@ -378,14 +378,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9cc8a5d7-4177-4de4-a3a0-bdf70f320ac8 + - 903d1213-68da-4f76-b2cb-580108267e42 status: 200 OK code: 200 - duration: 59.138155ms + duration: 131.039689ms - id: 10 request: proto: HTTP/1.1 @@ -419,14 +419,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:26 GMT + - Wed, 25 Feb 2026 12:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9220e1d9-5d9e-488d-86b5-1bc8c8891733 + - 7da3b6c9-7bd3-400f-b80d-cf54a08961d6 status: 200 OK code: 200 - duration: 67.03293ms + duration: 246.517505ms - id: 11 request: proto: HTTP/1.1 @@ -434,7 +434,7 @@ interactions: proto_minor: 1 content_length: 385 host: api.scaleway.com - body: '{"name":"tf-acc-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","1"],"placement_group":"2792ef0d-1995-447c-a8fa-35dd7229d267"}' + body: '{"name":"tf-acc-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","1"],"placement_group":"68c02355-8bea-4cca-9123-75d7b050c86a"}' headers: Content-Type: - application/json @@ -446,24 +446,24 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:26.596881+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:11.605876+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 654ed635-6be2-4ae6-ad9c-584bf128289d + - d4704114-7f70-4331-be8f-5b0dea0ac655 status: 201 Created code: 201 - duration: 490.142799ms + duration: 513.969936ms - id: 12 request: proto: HTTP/1.1 @@ -474,97 +474,97 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:26.596881+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:11.605876+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - cb73f4cd-0229-4c41-97c6-796bc01d682e + - 92cb7b98-c6e8-4090-802f-676225a6cd1a status: 200 OK code: 200 - duration: 90.351823ms + duration: 182.983142ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 385 host: api.scaleway.com + body: '{"name":"tf-acc-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","0"],"placement_group":"68c02355-8bea-4cca-9123-75d7b050c86a"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e - method: GET + 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 - content_length: 2218 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:26.596881+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:12.023571+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 516aa192-f788-4c1b-9930-e2502205bc21 - status: 200 OK - code: 200 - duration: 85.688005ms + - 2ce0f22c-9971-4ef4-867e-06120c360616 + status: 201 Created + code: 201 + duration: 729.534246ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 385 + content_length: 0 host: api.scaleway.com - body: '{"name":"tf-acc-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","2"],"placement_group":"2792ef0d-1995-447c-a8fa-35dd7229d267"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:26.961326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:11.605876+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0cb4a419-094a-4dd1-95f7-7961d98ed56d - status: 201 Created - code: 201 - duration: 680.325865ms + - 033f1eb2-8303-44a6-b49a-ecd91247bc01 + status: 200 OK + code: 200 + duration: 114.183425ms - id: 15 request: proto: HTTP/1.1 @@ -575,28 +575,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"9ce2a532-130e-45cb-a054-fce09070d2e9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.699469Z", "updated_at":"2026-02-23T17:15:26.699469Z", "references":[{"id":"06a8ead5-b91b-4114-b068-0d9b2c94b387", "product_resource_type":"instance_server", "product_resource_id":"6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "created_at":"2026-02-23T17:15:26.699469Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"03bc5c70-b166-4981-b9e0-8f641e9262d2", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.736087Z", "updated_at":"2026-02-25T12:02:11.736087Z", "references":[{"id":"2b7370b4-aa27-44fa-88c9-6707b49ab559", "product_resource_type":"instance_server", "product_resource_id":"d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "created_at":"2026-02-25T12:02:11.736087Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 85d52887-99ef-4f9e-ae11-36fafdf844c5 + - db846cd4-9e88-4fc7-acc0-fde3a31b1242 status: 200 OK code: 200 - duration: 43.856557ms + duration: 45.875485ms - id: 16 request: proto: HTTP/1.1 @@ -607,28 +607,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:26.961326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:12.023571+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 568489af-c7f4-423c-a21a-0182e2405520 + - 34e0eb30-9812-4a4f-9ed8-c5db86ce3842 status: 200 OK code: 200 - duration: 89.489348ms + duration: 102.754309ms - id: 17 request: proto: HTTP/1.1 @@ -636,7 +636,7 @@ interactions: proto_minor: 1 content_length: 385 host: api.scaleway.com - body: '{"name":"tf-acc-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","0"],"placement_group":"2792ef0d-1995-447c-a8fa-35dd7229d267"}' + body: '{"name":"tf-acc-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":["terraform-test","scaleway_instance_server","placement_group","2"],"placement_group":"68c02355-8bea-4cca-9123-75d7b050c86a"}' headers: Content-Type: - application/json @@ -648,24 +648,24 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.103528+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.253072+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 94b174f8-dd05-492a-b5db-e063ee1d4dcf + - 5748049a-054b-40d4-ad37-63dc79764fee status: 201 Created code: 201 - duration: 789.608409ms + duration: 806.101785ms - id: 18 request: proto: HTTP/1.1 @@ -676,97 +676,97 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:26.961326+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:12.023571+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1c95f9e2-bc8e-4c75-b22b-31ecd087c4b6 + - ba05c5e2-63e0-4d83-917c-d191701e1802 status: 200 OK code: 200 - duration: 82.757797ms + duration: 203.520565ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 host: api.scaleway.com + body: '{"action":"poweron"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.103528+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 357 + body: '{"task": {"id": "5ca45913-fa65-4124-9284-68bdfe715d5d", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/action", "href_result": "/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "started_at": "2026-02-25T12:02:12.612792+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2218" + - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5ca45913-fa65-4124-9284-68bdfe715d5d Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 91018885-8b23-415f-bbc4-5d44fef07c17 - status: 200 OK - code: 200 - duration: 87.924197ms + - dc24cc22-0d1d-4cb0-9d40-dc821fb139d5 + status: 202 Accepted + code: 202 + duration: 260.424747ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 host: api.scaleway.com - body: '{"action":"poweron"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 357 - body: '{"task": {"id": "230684c6-af66-4116-a9de-a946e7c1d5a1", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/action", "href_result": "/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "started_at": "2026-02-23T17:15:27.400171+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 2217 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.253072+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "357" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/230684c6-af66-4116-a9de-a946e7c1d5a1 + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ff1debba-4903-4f30-ab22-5437160f2ee1 - status: 202 Accepted - code: 202 - duration: 193.376657ms + - 79cadaa4-b5eb-4810-b3f7-39ba2eed8db2 + status: 200 OK + code: 200 + duration: 120.906196ms - id: 21 request: proto: HTTP/1.1 @@ -777,28 +777,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"8167374c-8a60-4b71-a8b8-5f6bf54588e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.720278Z", "updated_at":"2026-02-23T17:15:26.720278Z", "references":[{"id":"762bf57c-0a3e-454c-9182-ed9f22ead2ac", "product_resource_type":"instance_server", "product_resource_id":"7d21671b-69d0-42ed-a1e3-f568e85e6682", "created_at":"2026-02-23T17:15:26.720278Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - feded82a-b370-4d5c-8553-7baae4db1a7d + - e721e627-704c-4468-9248-5c2c9ac0295c status: 200 OK code: 200 - duration: 49.578761ms + duration: 52.64927ms - id: 22 request: proto: HTTP/1.1 @@ -809,28 +809,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2218 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.103528+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2217 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopped", "protected": false, "state_detail": "", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.253072+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["poweron", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2218" + - "2217" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - fd7937b4-0e70-41af-9436-cac828b4a581 + - c085e216-dadd-42d9-91ae-a57a55f3f947 status: 200 OK code: 200 - duration: 76.223072ms + duration: 185.455018ms - id: 23 request: proto: HTTP/1.1 @@ -841,28 +841,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:27.257846+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2239 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:12.413182+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2240" + - "2239" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8eb0e858-1aa8-4830-b569-a7fd8d69c07e + - 43b2677d-301e-4e64-b85a-ac7c39f39b24 status: 200 OK code: 200 - duration: 85.016618ms + duration: 191.007813ms - id: 24 request: proto: HTTP/1.1 @@ -873,28 +873,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"0c3250f7-85a1-46bb-9305-b991db8c1fa6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.741691Z", "updated_at":"2026-02-23T17:15:26.741691Z", "references":[{"id":"53b5f071-5787-4a42-9b6d-28cb609dda53", "product_resource_type":"instance_server", "product_resource_id":"5e15c140-3ecb-4187-bbd3-c1631068c63a", "created_at":"2026-02-23T17:15:26.741691Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.917570Z", "updated_at":"2026-02-25T12:02:11.917570Z", "references":[{"id":"f4868ec6-aded-4446-abd5-7fc63a362539", "product_resource_type":"instance_server", "product_resource_id":"2afbc89d-33e5-4586-ad4c-892febcdad92", "created_at":"2026-02-25T12:02:11.917570Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 405ab8ca-eaa7-47b1-8103-980be40d376a + - 6914a49e-1408-4164-a77f-401024dd7d57 status: 200 OK code: 200 - duration: 45.44379ms + duration: 114.566271ms - id: 25 request: proto: HTTP/1.1 @@ -908,30 +908,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "bc3965a1-fc80-464a-8623-abfed39a2b26", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/action", "href_result": "/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682", "started_at": "2026-02-23T17:15:27.612293+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "010f6d3b-f38c-4875-a961-298ab5a7fa5d", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/action", "href_result": "/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180", "started_at": "2026-02-25T12:02:12.882143+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bc3965a1-fc80-464a-8623-abfed39a2b26 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/010f6d3b-f38c-4875-a961-298ab5a7fa5d Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 971f3cfd-d4bb-4160-9d1f-306e9af779ff + - 24b0e1c5-f9e1-4a55-a747-62031a6199ba status: 202 Accepted code: 202 - duration: 210.420019ms + duration: 252.943939ms - id: 26 request: proto: HTTP/1.1 @@ -942,28 +942,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:27.456851+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2239 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:12.734901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2240" + - "2239" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a9c1f7ae-1721-4ebf-bcf5-3f018f588126 + - 6b68a427-a263-4271-9009-01f2dc4d6c14 status: 200 OK code: 200 - duration: 103.35001ms + duration: 193.585358ms - id: 27 request: proto: HTTP/1.1 @@ -977,30 +977,30 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: '{"task": {"id": "5a6b98e3-d8d6-43f0-96ed-3ec5b79fafba", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/action", "href_result": "/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a", "started_at": "2026-02-23T17:15:27.943625+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + body: '{"task": {"id": "aa5f24bd-2909-4702-982c-7ecf70ac5d55", "description": "server_batch_poweron", "status": "pending", "href_from": "/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/action", "href_result": "/servers/2afbc89d-33e5-4586-ad4c-892febcdad92", "started_at": "2026-02-25T12:02:13.172438+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - "357" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:27 GMT + - Wed, 25 Feb 2026 12:02:13 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a6b98e3-d8d6-43f0-96ed-3ec5b79fafba + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa5f24bd-2909-4702-982c-7ecf70ac5d55 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 48bf84d7-ed67-413f-9384-2e5eec552928 + - bdc8526d-9e76-4544-ae89-0e933ff57dd2 status: 202 Accepted code: 202 - duration: 436.231377ms + duration: 237.764243ms - id: 28 request: proto: HTTP/1.1 @@ -1011,28 +1011,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.559806+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2239 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.986767+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2240" + - "2239" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:28 GMT + - Wed, 25 Feb 2026 12:02:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 260e29bc-dd63-447f-909d-0a8246827137 + - 6a05bc8d-9e94-4d82-8e6e-c046465a7afa status: 200 OK code: 200 - duration: 101.005105ms + duration: 94.320541ms - id: 29 request: proto: HTTP/1.1 @@ -1043,28 +1043,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:30.606651+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2374 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:15.169348+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2374" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 11ef4fe9-5f48-4256-a6e9-fc931f52caeb + - 1c4189a3-01bd-495b-be09-4a43db35836f status: 200 OK code: 200 - duration: 115.205426ms + duration: 96.356306ms - id: 30 request: proto: HTTP/1.1 @@ -1075,28 +1075,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:30.606651+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2374 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:15.169348+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2374" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2bfdf91f-7cbd-4372-891f-76ab88466e55 + - 5e9be8c4-06f8-4fec-8a19-538655425eb6 status: 200 OK code: 200 - duration: 112.055047ms + duration: 104.402293ms - id: 31 request: proto: HTTP/1.1 @@ -1107,28 +1107,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9ce2a532-130e-45cb-a054-fce09070d2e9"}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "143" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 49cd5a39-2b8a-40dc-90b2-7fb5d9b8df3f - status: 404 Not Found - code: 404 - duration: 29.361648ms + - d0087bfd-efeb-41dd-bb31-3deeeccf3da4 + status: 200 OK + code: 200 + duration: 50.058832ms - id: 32 request: proto: HTTP/1.1 @@ -1139,28 +1139,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"9ce2a532-130e-45cb-a054-fce09070d2e9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.699469Z", "updated_at":"2026-02-23T17:15:26.699469Z", "references":[{"id":"06a8ead5-b91b-4114-b068-0d9b2c94b387", "product_resource_type":"instance_server", "product_resource_id":"6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "created_at":"2026-02-23T17:15:26.699469Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "03bc5c70-b166-4981-b9e0-8f641e9262d2"}' headers: Content-Length: - - "701" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9ca2963e-28c5-4ee3-9977-86ba826090c3 - status: 200 OK - code: 200 - duration: 34.683898ms + - b5672a78-edd7-4db8-a596-9eeee0676a5e + status: 404 Not Found + code: 404 + duration: 28.42847ms - id: 33 request: proto: HTTP/1.1 @@ -1171,28 +1171,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:27.456851+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 701 + body: '{"id":"03bc5c70-b166-4981-b9e0-8f641e9262d2", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.736087Z", "updated_at":"2026-02-25T12:02:11.736087Z", "references":[{"id":"2b7370b4-aa27-44fa-88c9-6707b49ab559", "product_resource_type":"instance_server", "product_resource_id":"d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "created_at":"2026-02-25T12:02:11.736087Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2240" + - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ce93bfb4-6526-4448-a7b6-7f4b145dee53 + - 0f7a17e2-de4d-4ccc-ad5c-ef11acfaa8b0 status: 200 OK code: 200 - duration: 86.556383ms + duration: 44.942904ms - id: 34 request: proto: HTTP/1.1 @@ -1203,7 +1203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/user_data method: GET response: proto: HTTP/2.0 @@ -1217,14 +1217,14 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5d470849-9cf2-4efa-842d-b175a208f0d4 + - 0b2e23cc-ab48-4819-ac48-9df94ce6bfa2 status: 200 OK code: 200 - duration: 36.068713ms + duration: 65.851035ms - id: 35 request: proto: HTTP/1.1 @@ -1235,32 +1235,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 2239 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:12.734901+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "20" + - "2239" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:32 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 20911d2f-1487-4316-abae-63fbd1ca2b94 - X-Total-Count: - - "0" + - e325677f-27d5-4989-877c-d13ff3951505 status: 200 OK code: 200 - duration: 44.756882ms + duration: 114.427926ms - id: 36 request: proto: HTTP/1.1 @@ -1271,28 +1267,32 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.559806+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "2240" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:33 GMT + - Wed, 25 Feb 2026 12:02:18 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6f51e15c-798c-4060-b3a2-75bd97d8f7ca + - b0970b7e-51c1-4ee5-b544-42b92a2209b5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 89.038064ms + duration: 49.171787ms - id: 37 request: proto: HTTP/1.1 @@ -1303,28 +1303,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2344 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:27.456851+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2239 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.986767+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2344" + - "2239" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:37 GMT + - Wed, 25 Feb 2026 12:02:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5677a79f-e8b4-48e7-8402-b69edc2977a8 + - 6a4b2add-5a3d-4d01-ae5a-fc1a1a06d574 status: 200 OK code: 200 - duration: 98.661835ms + duration: 95.655421ms - id: 38 request: proto: HTTP/1.1 @@ -1335,28 +1335,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2240 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "allocating node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.559806+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": null, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2375 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2240" + - "2375" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:38 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 13173f08-88f7-4bf6-bad8-cc2e6d34fb97 + - e0f16da7-cfd3-484c-8f5d-837723b318a5 status: 200 OK code: 200 - duration: 109.623536ms + duration: 102.794626ms - id: 39 request: proto: HTTP/1.1 @@ -1367,28 +1367,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2375 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:38.777514+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - "2375" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ae752c2a-bd57-40d1-ac8a-57c148535851 + - 8fc9566f-3577-4832-89d9-64b44ac733b0 status: 200 OK code: 200 - duration: 97.72917ms + duration: 105.302126ms - id: 40 request: proto: HTTP/1.1 @@ -1399,28 +1399,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:38.777514+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2342 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:12.986767+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2342" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f22007a6-de9e-4fe7-a7d0-5449c65b11a4 + - 2f440713-121a-4892-86f3-56bb3b00b584 status: 200 OK code: 200 - duration: 116.136813ms + duration: 103.74123ms - id: 41 request: proto: HTTP/1.1 @@ -1431,29 +1431,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 37c4c5c8-6e7a-4540-b034-47cf67eaf12d + status: 200 OK + code: 200 + duration: 54.537855ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 50880956-18e5-4b70-8229-dd94b931d01b + - 110990ea-a7a8-4e77-b52a-f0e58323fc36 status: 404 Not Found code: 404 - duration: 28.199203ms - - id: 42 + duration: 33.254207ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1463,29 +1495,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"8167374c-8a60-4b71-a8b8-5f6bf54588e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.720278Z", "updated_at":"2026-02-23T17:15:26.720278Z", "references":[{"id":"762bf57c-0a3e-454c-9182-ed9f22ead2ac", "product_resource_type":"instance_server", "product_resource_id":"7d21671b-69d0-42ed-a1e3-f568e85e6682", "created_at":"2026-02-23T17:15:26.720278Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 223083db-9376-47e9-980e-db1bf7f00e91 + - 1b28400d-d2ab-459e-8f1b-62f6f08ae359 status: 200 OK code: 200 - duration: 33.987826ms - - id: 43 + duration: 47.076436ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1495,7 +1527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data method: GET response: proto: HTTP/2.0 @@ -1509,15 +1541,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 23a33621-3cb8-4c2e-872b-30195643efa6 + - f4983316-a178-4e05-b9d3-ecd375c367a6 status: 200 OK code: 200 - duration: 56.261061ms - - id: 44 + duration: 45.272021ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1527,7 +1559,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics method: GET response: proto: HTTP/2.0 @@ -1541,19 +1573,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - dda33138-d445-4926-97ac-87a3048c5a61 + - 0493fb59-a9e2-4b72-a05d-ff5fc472fb5c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 39.122434ms - - id: 45 + duration: 59.738859ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1563,29 +1595,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2344 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "starting", "protected": false, "state_detail": "provisioning node", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:27.559806+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2373 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:24.742899+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2344" + - "2373" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:43 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e464ae08-3e6e-4ca6-866e-bd5cef8d0744 + - d305f35c-cf4d-4995-807b-aa322008fd00 status: 200 OK code: 200 - duration: 89.253167ms - - id: 46 + duration: 95.13407ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1595,29 +1627,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:44.676985+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2373 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:24.742899+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2373" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7d75597a-22ca-4ea2-b0ec-23b34815378a + - 34df99ab-d687-4f14-8737-7504e6d91755 status: 200 OK code: 200 - duration: 87.642542ms - - id: 47 + duration: 113.193895ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1627,29 +1659,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:44.676985+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "2375" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 58f56ade-e841-4c65-9b33-55972d404e95 + - 0829ca62-6839-435a-85fa-cd5f4ab01445 status: 200 OK code: 200 - duration: 106.407481ms - - id: 48 + duration: 112.874496ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1659,29 +1691,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 3ab9863d-f3e8-47a4-a661-9f3369fba468 + - 828240a8-f801-4253-b4d0-15b920430d07 status: 404 Not Found code: 404 - duration: 44.965298ms - - id: 49 + duration: 54.298323ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1691,29 +1723,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"0c3250f7-85a1-46bb-9305-b991db8c1fa6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.741691Z", "updated_at":"2026-02-23T17:15:26.741691Z", "references":[{"id":"53b5f071-5787-4a42-9b6d-28cb609dda53", "product_resource_type":"instance_server", "product_resource_id":"5e15c140-3ecb-4187-bbd3-c1631068c63a", "created_at":"2026-02-23T17:15:26.741691Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.917570Z", "updated_at":"2026-02-25T12:02:11.917570Z", "references":[{"id":"f4868ec6-aded-4446-abd5-7fc63a362539", "product_resource_type":"instance_server", "product_resource_id":"2afbc89d-33e5-4586-ad4c-892febcdad92", "created_at":"2026-02-25T12:02:11.917570Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 04a4b7d5-e892-49d2-9ee5-942343abec5e + - 6c1c26d8-4761-426f-a3dd-f0e54904bee8 status: 200 OK code: 200 - duration: 58.297576ms - - id: 50 + duration: 47.253021ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1723,7 +1755,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/user_data method: GET response: proto: HTTP/2.0 @@ -1737,15 +1769,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 903dc869-9c57-4fe3-afe5-c76d88b34a44 + - 0ae5065e-a59b-41ea-8de7-485dbd00b3d6 status: 200 OK code: 200 - duration: 56.080233ms - - id: 51 + duration: 44.961058ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1755,7 +1787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/private_nics method: GET response: proto: HTTP/2.0 @@ -1769,19 +1801,19 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 29b7b3bf-bc2a-4c80-80bf-04e83ceb698b + - 2830ac8a-acc5-4b3b-899c-5b3d46068221 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.001317ms - - id: 52 + duration: 42.515774ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1791,29 +1823,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2375 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:44.676985+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - "2375" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:48 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4067dca2-e9fe-47e2-83ea-06e16f344d7a + - f72031ea-bdbf-43c8-8679-eb0c314e42ab status: 200 OK code: 200 - duration: 92.011025ms - - id: 53 + duration: 113.94316ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1823,29 +1855,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:30.606651+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2374 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:15.169348+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2374" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 183d1093-b08a-4ab7-b40b-cae49e9d4ab9 + - 78450325-02a3-4357-8324-2f6377423f26 status: 200 OK code: 200 - duration: 113.359464ms - - id: 54 + duration: 102.263341ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1855,29 +1887,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:38.777514+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2373 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:24.742899+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2373" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - be218ed6-3c62-479d-bb96-fec50773c481 + - 0b46fbe8-9c4c-44da-9834-5ca29f0da4cc status: 200 OK code: 200 - duration: 118.303553ms - - id: 55 + duration: 88.795909ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1887,29 +1919,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/2792ef0d-1995-447c-a8fa-35dd7229d267 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 331 - body: '{"placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "331" + - "330" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - e4730df1-5862-417c-a6f0-67a0681ec5a5 + - 7209bdbd-3e62-4d3f-8e9b-327d5cfdbadc status: 200 OK code: 200 - duration: 56.375089ms - - id: 56 + duration: 74.804982ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1919,29 +1951,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/2792ef0d-1995-447c-a8fa-35dd7229d267 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 331 - body: '{"placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "331" + - "330" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4993288e-5c19-487c-b18d-f647b6adeffb + - 76e09546-77e6-4a5b-aa24-704101892f59 status: 200 OK code: 200 - duration: 60.842865ms - - id: 57 + duration: 72.330743ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1951,29 +1983,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:44.676985+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2373 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:24.742899+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2373" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 43d63d2b-5ea0-40fb-8b4f-87d6848a4a5d + - 4b8eb733-f2b0-4cb7-9dd2-f4b0b7cacbab status: 200 OK code: 200 - duration: 89.537402ms - - id: 58 + duration: 81.94677ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -1983,29 +2015,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2375 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:30.606651+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2374 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:15.169348+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2375" + - "2374" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b1af978e-9063-4df9-ae66-cd7bd0410c13 + - 3120c801-90d3-4fda-9b17-264d1cfd5afe status: 200 OK code: 200 - duration: 108.655956ms - - id: 59 + duration: 93.816389ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,29 +2047,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2375 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:38.777514+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "2792ef0d-1995-447c-a8fa-35dd7229d267", "name": "tf-pg-sleepy-varahamihira", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - "2375" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 5142949e-ec6a-4203-ab1b-3a7f2d9d8ae9 + - 250bbed3-583a-44b3-8079-0c6984d7dae6 status: 200 OK code: 200 - duration: 110.979897ms - - id: 60 + duration: 102.878375ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2047,29 +2079,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6"}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "143" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8196f037-7fc2-40c9-a987-361f4fa2b023 - status: 404 Not Found - code: 404 - duration: 41.065066ms - - id: 61 + - 47bb00f0-460e-4157-9b73-bdaf7d7e17c6 + status: 200 OK + code: 200 + duration: 53.640247ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e4f6179e-9df3-4444-8bfc-de671cf75e58 + status: 200 OK + code: 200 + duration: 52.167805ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2079,29 +2143,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 18cca148-6c96-4e52-a172-25429fb72ac8 + - 4d0631fa-b9e4-4a1b-b695-4aacfc283774 status: 404 Not Found code: 404 - duration: 21.371062ms - - id: 62 + duration: 24.042957ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2111,29 +2175,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9ce2a532-130e-45cb-a054-fce09070d2e9"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 48f37f7c-88cc-44b6-b349-81a6c7c94f59 + - 2c10488c-43c3-49c4-9ff7-b705f3e85fdd status: 404 Not Found code: 404 - duration: 24.767656ms - - id: 63 + duration: 28.707451ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2143,29 +2207,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"9ce2a532-130e-45cb-a054-fce09070d2e9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.699469Z", "updated_at":"2026-02-23T17:15:26.699469Z", "references":[{"id":"06a8ead5-b91b-4114-b068-0d9b2c94b387", "product_resource_type":"instance_server", "product_resource_id":"6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "created_at":"2026-02-23T17:15:26.699469Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.917570Z", "updated_at":"2026-02-25T12:02:11.917570Z", "references":[{"id":"f4868ec6-aded-4446-abd5-7fc63a362539", "product_resource_type":"instance_server", "product_resource_id":"2afbc89d-33e5-4586-ad4c-892febcdad92", "created_at":"2026-02-25T12:02:11.917570Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0a15c815-1118-494e-8c67-3156eba35263 + - 4fb13a58-89e4-4c03-aab6-6193ed733429 status: 200 OK code: 200 - duration: 41.514752ms - - id: 64 + duration: 30.868623ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2175,29 +2239,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 701 - body: '{"id":"0c3250f7-85a1-46bb-9305-b991db8c1fa6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.741691Z", "updated_at":"2026-02-23T17:15:26.741691Z", "references":[{"id":"53b5f071-5787-4a42-9b6d-28cb609dda53", "product_resource_type":"instance_server", "product_resource_id":"5e15c140-3ecb-4187-bbd3-c1631068c63a", "created_at":"2026-02-23T17:15:26.741691Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "701" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9d3dcb07-d169-43b1-a389-f8b68d14aa8e + - ff43e2e6-3ce9-4a9e-8f58-06b83fad2143 status: 200 OK code: 200 - duration: 50.607325ms - - id: 65 + duration: 104.322064ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2207,29 +2271,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 701 - body: '{"id":"8167374c-8a60-4b71-a8b8-5f6bf54588e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.720278Z", "updated_at":"2026-02-23T17:15:26.720278Z", "references":[{"id":"762bf57c-0a3e-454c-9182-ed9f22ead2ac", "product_resource_type":"instance_server", "product_resource_id":"7d21671b-69d0-42ed-a1e3-f568e85e6682", "created_at":"2026-02-23T17:15:26.720278Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - bf168844-c202-4465-8517-582f93c55496 + - a1844b4d-3f28-4b36-9a5a-6b62c215a585 status: 200 OK code: 200 - duration: 60.492163ms - - id: 66 + duration: 44.79561ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2239,29 +2303,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "03bc5c70-b166-4981-b9e0-8f641e9262d2"}' headers: Content-Length: - - "17" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f655e5c1-b7eb-42f5-8e6e-d16eabb629c0 - status: 200 OK - code: 200 - duration: 55.479233ms - - id: 67 + - 43063257-d4e3-4890-86f9-2b261bb4ab6a + status: 404 Not Found + code: 404 + duration: 32.270825ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2271,7 +2335,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/user_data method: GET response: proto: HTTP/2.0 @@ -2285,15 +2349,15 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 28f72bb4-f8a2-4149-8d3e-bf3821a99b68 + - bcd06a74-c31d-46cf-b244-9308e657b014 status: 200 OK code: 200 - duration: 51.280097ms - - id: 68 + duration: 53.987335ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2303,29 +2367,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 17 - body: '{"user_data": []}' + content_length: 701 + body: '{"id":"03bc5c70-b166-4981-b9e0-8f641e9262d2", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.736087Z", "updated_at":"2026-02-25T12:02:11.736087Z", "references":[{"id":"2b7370b4-aa27-44fa-88c9-6707b49ab559", "product_resource_type":"instance_server", "product_resource_id":"d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "created_at":"2026-02-25T12:02:11.736087Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 15a772ec-9897-4be7-8d76-5925736b8b8f + - a41d899f-a6e0-415d-b8d2-e2709b76cae3 status: 200 OK code: 200 - duration: 45.893271ms - - id: 69 + duration: 34.624802ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2335,33 +2399,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "20" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b2624d84-972f-4b2f-9a36-be27fc10c711 - X-Total-Count: - - "0" + - 71aaf607-73d8-45d4-b01b-7452d27cbef5 status: 200 OK code: 200 - duration: 52.453308ms - - id: 70 + duration: 41.233778ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2371,33 +2431,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 20 - body: '{"private_nics": []}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "20" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT - Link: - - ; rel="last" + - Wed, 25 Feb 2026 12:02:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 55b5c55c-a7da-40a9-898e-ff0ee7909c94 - X-Total-Count: - - "0" + - 756f7000-9e14-48c5-aadd-981bc45815e3 status: 200 OK code: 200 - duration: 53.767852ms - - id: 71 + duration: 45.345393ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2407,7 +2463,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics method: GET response: proto: HTTP/2.0 @@ -2421,124 +2477,1502 @@ interactions: Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:49 GMT + - Wed, 25 Feb 2026 12:02:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f8338ccc-8807-4ac5-abc2-66e7e188838d + - 4d15800f-7b5b-4ed5-acce-e921eb250238 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.729036ms - - id: 72 + duration: 50.01695ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 24 + content_length: 0 host: api.scaleway.com - body: '{"placement_group":null}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1db293da-b5e0-48a1-badd-902443fa2076 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 79.83182ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 730e200c-1b67-4584-b54f-72e294eb6b1a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 55.038101ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' + headers: + Content-Length: + - "330" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6f70f369-85e7-473e-a7c1-5ab44522581a + status: 200 OK + code: 200 + duration: 76.539605ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2375 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2375" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e95a3a66-03e3-4bbe-aa22-f3253dd98e47 + status: 200 OK + code: 200 + duration: 85.442657ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2373 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:24.742899+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2373" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9241c9be-86b7-4591-8892-038714196db3 + status: 200 OK + code: 200 + duration: 85.380442ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2374 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:15.169348+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2374" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fac34278-f83c-42be-b186-5547dc88e986 + status: 200 OK + code: 200 + duration: 129.973851ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 59b2c1ea-0ac2-4823-bd8e-b51fd988d670 + status: 200 OK + code: 200 + duration: 50.18496ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 488a2969-1473-409f-8597-a59f8c62cef4 + status: 200 OK + code: 200 + duration: 58.325928ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 03a4e5dc-90db-4093-a10b-47ea24bf0926 + status: 404 Not Found + code: 404 + duration: 28.765817ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 72e674d3-07a3-44ea-becf-358bb77273d4 + status: 200 OK + code: 200 + duration: 58.399233ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 51741bc0-cf8b-4a94-9738-5b60202458bb + status: 404 Not Found + code: 404 + duration: 54.31543ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 22baf078-7308-43ae-a03a-05990bb2db5b + status: 200 OK + code: 200 + duration: 42.925675ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "03bc5c70-b166-4981-b9e0-8f641e9262d2"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3abfd9c2-3a2a-45c1-adac-1c1f00edd7d5 + status: 404 Not Found + code: 404 + duration: 29.211419ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.917570Z", "updated_at":"2026-02-25T12:02:11.917570Z", "references":[{"id":"f4868ec6-aded-4446-abd5-7fc63a362539", "product_resource_type":"instance_server", "product_resource_id":"2afbc89d-33e5-4586-ad4c-892febcdad92", "created_at":"2026-02-25T12:02:11.917570Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d7cbdada-76a8-4a48-ab69-676094bc4b73 + status: 200 OK + code: 200 + duration: 40.311499ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5ed1cc93-4d73-41f4-bf0a-19848c8b0cad + status: 200 OK + code: 200 + duration: 39.941367ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"03bc5c70-b166-4981-b9e0-8f641e9262d2", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.736087Z", "updated_at":"2026-02-25T12:02:11.736087Z", "references":[{"id":"2b7370b4-aa27-44fa-88c9-6707b49ab559", "product_resource_type":"instance_server", "product_resource_id":"d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "created_at":"2026-02-25T12:02:11.736087Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4be9f1c6-f883-4212-9de3-f7b6db89fab9 + status: 200 OK + code: 200 + duration: 57.191458ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fdd7c899-b0b1-4387-b621-e30cb5754251 + status: 200 OK + code: 200 + duration: 38.709287ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9bdc1fff-05ea-4051-89c2-df9b6cf823bf + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 42.67829ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 71269d38-0133-4dbb-8461-c41ac44371fd + status: 200 OK + code: 200 + duration: 57.145373ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d32ab460-5448-443e-9694-be0ab07007c3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 64.213415ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:30 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f12a4502-bceb-4961-87be-3cd16b244497 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 49.919481ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2375 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:21.328239+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2375" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a92fdede-29be-4231-80ac-6ce5f056ca0a + status: 200 OK + code: 200 + duration: 93.261209ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: '{"placement_group":null}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2067 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:31.068664+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2067" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ac83480f-4e08-46c3-b228-d1cdb2b1b995 + status: 200 OK + code: 200 + duration: 182.59395ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 24 + host: api.scaleway.com + body: '{"placement_group":null}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2068 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:31.073522+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2068" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - faa95e90-238d-44ba-a6b0-90750c13e9e7 + status: 200 OK + code: 200 + duration: 229.627521ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: '{"name":"tf-acc-server-with-placement-group","tags":["terraform-test","scaleway_instance_server","placement_group"]}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:50.104866+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2366" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 66922db0-2d03-40bc-8891-d0a17b97691f + status: 200 OK + code: 200 + duration: 165.966765ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2067 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:31.068664+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2067" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8c0ad40b-8dec-43c6-8f04-1095f1d5ba21 + status: 200 OK + code: 200 + duration: 81.886743ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2068 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:31.073522+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2068" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a8d3801b-e8b2-416b-a69b-2d5d77c118f4 + status: 200 OK + code: 200 + duration: 89.203272ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2366" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c8e40460-844c-45e1-ba16-6abf1c1c5cc0 + status: 200 OK + code: 200 + duration: 106.265186ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2067 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:31.068664+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2067" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9d6aa085-fc15-4083-9986-a0097b082485 + status: 200 OK + code: 200 + duration: 114.169108ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2068 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:31.073522+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2068" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 11baf795-73af-45a7-a2b5-97f910b8541d + status: 200 OK + code: 200 + duration: 84.703843ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2366" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7eef374c-1c8e-4427-b528-ee002458ed02 + status: 200 OK + code: 200 + duration: 88.77354ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' + headers: + Content-Length: + - "971" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ead6bde6-ab74-4685-b32d-28ba05e9e4ff + status: 200 OK + code: 200 + duration: 34.242736ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c84cde59-5b6d-4b21-85ae-4e82ae0caf7c + status: 404 Not Found + code: 404 + duration: 34.72239ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 701 + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "2068" + - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0892e2c6-d0b3-4c85-aba7-b7dac364a96d + - c8ef6d13-eb6b-46a4-b12f-0effd9aa6b1c status: 200 OK code: 200 - duration: 193.97042ms - - id: 73 + duration: 54.129785ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 24 + content_length: 22 host: api.scaleway.com - body: '{"placement_group":null}' + body: '{"action":"terminate"}' headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:50.088377+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 353 + body: '{"task": {"id": "49e02ae4-f295-4b0f-a009-4243f622604f", "description": "server_terminate", "status": "pending", "href_from": "/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73/action", "href_result": "/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "started_at": "2026-02-25T12:02:31.583802+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "2068" + - "353" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/49e02ae4-f295-4b0f-a009-4243f622604f + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - db0d9dea-e494-4777-8de4-b4bc62416e57 + status: 202 Accepted + code: 202 + duration: 206.382245ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + host: api.scaleway.com + body: '{"action":"terminate"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: '{"task": {"id": "ac17edd0-68c4-4ebc-8ae5-ea2b646c6d33", "description": "server_terminate", "status": "pending", "href_from": "/servers/2afbc89d-33e5-4586-ad4c-892febcdad92/action", "href_result": "/servers/2afbc89d-33e5-4586-ad4c-892febcdad92", "started_at": "2026-02-25T12:02:31.584534+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ac17edd0-68c4-4ebc-8ae5-ea2b646c6d33 + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 55e924ab-67ea-4163-b305-ac9bf5f550f8 + status: 202 Accepted + code: 202 + duration: 232.713396ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 17 + body: '{"user_data": []}' + headers: + Content-Length: + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c8fea7ac-fdb4-4abe-a85d-8631cb6b41c2 + - c35787dc-469b-412b-ae60-5fbc116c09af status: 200 OK code: 200 - duration: 193.937869ms - - id: 74 + duration: 55.481315ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 24 + content_length: 0 host: api.scaleway.com - body: '{"placement_group":null}' headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 20 + body: '{"private_nics": []}' + headers: + Content-Length: + - "20" Content-Type: - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 27a775e3-f53c-4c15-a6f0-6589c07e7897 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 64.763236ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:50.090746+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 2030 + body: '{"server": {"id": "2afbc89d-33e5-4586-ad4c-892febcdad92", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e9", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.253072+00:00", "modification_date": "2026-02-25T12:02:31.421192+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "49"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "2afbc89d-33e5-4586-ad4c-892febcdad92.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2030" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c15405c0-bc64-47f5-a435-52722dd4e94a + status: 200 OK + code: 200 + duration: 93.988949ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2031 + body: '{"server": {"id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "03bc5c70-b166-4981-b9e0-8f641e9262d2", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:df", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:11.605876+00:00", "modification_date": "2026-02-25T12:02:31.431268+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "601", "node_id": "103"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "2031" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - be7e514a-2b43-4d0b-9c8c-a8b79e417faf + status: 200 OK + code: 200 + duration: 105.159589ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d7a9ba53-ba36-490b-9a3e-a5bb91830b73 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "d7a9ba53-ba36-490b-9a3e-a5bb91830b73"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 390502c5-313f-4cf1-b4cf-d788afe0dc24 + status: 404 Not Found + code: 404 + duration: 45.065757ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2afbc89d-33e5-4586-ad4c-892febcdad92 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "2afbc89d-33e5-4586-ad4c-892febcdad92"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3cf5adfa-a8fa-491f-a72a-1b186e0255a0 + status: 404 Not Found + code: 404 + duration: 76.440794ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "03bc5c70-b166-4981-b9e0-8f641e9262d2"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a9c4da85-30f2-4a0c-8b6e-948989123421 + status: 404 Not Found + code: 404 + duration: 31.87053ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "ef3559e0-8c8b-40b8-b416-8699fd31d8e4"}' + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Wed, 25 Feb 2026 12:02:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ccafad2f-8c22-42b7-bfab-fb50e1f169f4 + status: 404 Not Found + code: 404 + duration: 32.978691ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 494 + body: '{"id":"03bc5c70-b166-4981-b9e0-8f641e9262d2", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.736087Z", "updated_at":"2026-02-25T12:02:32.989977Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-25T12:02:32.989977Z", "zone":"fr-par-1"}' headers: Content-Length: - - "2068" + - "494" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - ea507917-341d-4cf6-8e78-99463095032b + - 50eecfa3-4cc4-45ef-be53-6fcc27564432 status: 200 OK code: 200 - duration: 194.030131ms - - id: 75 + duration: 51.405325ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,29 +3982,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:50.104866+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 494 + body: '{"id":"ef3559e0-8c8b-40b8-b416-8699fd31d8e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.917570Z", "updated_at":"2026-02-25T12:02:33.114762Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-25T12:02:33.114762Z", "zone":"fr-par-1"}' headers: Content-Length: - - "2068" + - "494" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 33616794-f141-456d-a280-af2af98451c4 + - 93a6353c-ab6b-4898-99b5-059ce87ee2eb status: 200 OK code: 200 - duration: 82.537766ms - - id: 76 + duration: 52.882446ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -2580,29 +4014,27 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03bc5c70-b166-4981-b9e0-8f641e9262d2 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:50.090746+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 0 + body: "" headers: - Content-Length: - - "2068" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a819bf2b-8e94-49c9-8e7a-8af2a2cd150c - status: 200 OK - code: 200 - duration: 102.587029ms - - id: 77 + - b9638654-b1ae-4223-ae53-d3bb7cb9d1c0 + status: 204 No Content + code: 204 + duration: 63.002469ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -2612,29 +4044,27 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ef3559e0-8c8b-40b8-b416-8699fd31d8e4 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:50.088377+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 0 + body: "" headers: - Content-Length: - - "2068" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 0d37b7b7-3492-4f58-92bc-6ac50f8718fd - status: 200 OK - code: 200 - duration: 102.557925ms - - id: 78 + - 8d69c7d7-5855-4d20-9fdb-e84dcd40b13a + status: 204 No Content + code: 204 + duration: 94.24437ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -2644,29 +4074,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:50.104866+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2068" + - "2366" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2731b951-721a-4e2b-89de-12d8ea5aa23c + - d42ef446-75e7-4824-8db4-3a41eaf97ea4 status: 200 OK code: 200 - duration: 85.910346ms - - id: 79 + duration: 102.16616ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -2676,29 +4106,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:50.090746+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 330 + body: '{"placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": true, "tags": [], "zone": "fr-par-1"}}' headers: Content-Length: - - "2068" + - "330" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 091c6cf7-69ea-4f92-91a0-f9be716713c1 + - 35deeb20-3f88-4cca-bed6-f0d428defb70 status: 200 OK code: 200 - duration: 78.01639ms - - id: 80 + duration: 74.051149ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -2708,140 +4138,125 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2068 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:50.088377+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2068" + - "2366" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7e49df57-74d9-4fd9-be5f-b0706f55297f + - d16f7549-adf8-4c7a-a46e-90608ff6bd78 status: 200 OK code: 200 - duration: 93.479397ms - - id: 81 + duration: 97.689563ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 host: api.scaleway.com - body: '{"action":"terminate"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/action - method: POST + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 353 - body: '{"task": {"id": "19adea0f-59f0-42a2-b3af-aa38a1948615", "description": "server_terminate", "status": "pending", "href_from": "/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682/action", "href_result": "/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682", "started_at": "2026-02-23T17:15:50.548184+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "353" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/19adea0f-59f0-42a2-b3af-aa38a1948615 + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 9223d47d-7488-4013-8eb9-2ba8fc68de97 - status: 202 Accepted - code: 202 - duration: 193.392145ms - - id: 82 + - b789ed1f-db97-4e14-9365-657916c225f7 + status: 200 OK + code: 200 + duration: 50.369515ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 host: api.scaleway.com - body: '{"action":"terminate"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 353 - body: '{"task": {"id": "0431f192-dd46-475a-b85e-1371175c2846", "description": "server_terminate", "status": "pending", "href_from": "/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a/action", "href_result": "/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a", "started_at": "2026-02-23T17:15:50.556264+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' headers: Content-Length: - - "353" + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0431f192-dd46-475a-b85e-1371175c2846 + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 72e21b68-123a-4f89-a1f8-1627daa56739 - status: 202 Accepted - code: 202 - duration: 192.388439ms - - id: 83 + - 9f2fff0b-1af0-45fd-95fb-c11bd0c481f1 + status: 404 Not Found + code: 404 + duration: 26.976303ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 host: api.scaleway.com - body: '{"action":"terminate"}' headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 353 - body: '{"task": {"id": "dfff8bb0-e2ab-4c73-888a-2fd7617aa37a", "description": "server_terminate", "status": "pending", "href_from": "/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e/action", "href_result": "/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "started_at": "2026-02-23T17:15:50.573790+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' + content_length: 701 + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "353" + - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dfff8bb0-e2ab-4c73-888a-2fd7617aa37a + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 74bd3dec-c813-4703-adf7-4a11aa61d292 - status: 202 Accepted - code: 202 - duration: 193.607455ms - - id: 84 + - 6f5bc602-08a5-40bb-90d9-5f91d786c14a + status: 200 OK + code: 200 + duration: 35.537202ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -2851,29 +4266,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2031 - body: '{"server": {"id": "7d21671b-69d0-42ed-a1e3-f568e85e6682", "name": "tf-acc-server-2-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-2-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "2"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:3f", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.961326+00:00", "modification_date": "2026-02-23T17:15:50.405410+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "701", "node_id": "211"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "7d21671b-69d0-42ed-a1e3-f568e85e6682.pub.instances.scw.cloud"}}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "2031" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - f6f43f86-91e8-4bf6-8f0c-e9f41ecf24e5 + - 4aea364b-3370-4ec9-84c3-b7d04828e1da status: 200 OK code: 200 - duration: 78.922595ms - - id: 85 + duration: 39.97645ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -2883,29 +4298,33 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2031 - body: '{"server": {"id": "5e15c140-3ecb-4187-bbd3-c1631068c63a", "name": "tf-acc-server-0-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-0-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "0"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:43", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:27.103528+00:00", "modification_date": "2026-02-23T17:15:50.418370+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "201", "node_id": "185"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "5e15c140-3ecb-4187-bbd3-c1631068c63a.pub.instances.scw.cloud"}}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "2031" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:37 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 64583856-7707-4a5d-ac3f-0edd65fd4fea + - 4675692b-8112-4637-aee9-6189b75698d9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 89.947792ms - - id: 86 + duration: 52.770357ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -2915,29 +4334,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2031 - body: '{"server": {"id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e", "name": "tf-acc-server-1-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-1-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "9ce2a532-130e-45cb-a054-fce09070d2e9", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group", "1"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:08:39", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-23T17:15:26.596881+00:00", "modification_date": "2026-02-23T17:15:50.437246+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "30", "hypervisor_id": "801", "node_id": "136"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e.pub.instances.scw.cloud"}}' + content_length: 2366 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:31.171596+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": {"id": "68c02355-8bea-4cca-9123-75d7b050c86a", "name": "tf-pg-reverent-sanderson", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "policy_mode": "enforced", "policy_type": "max_availability", "policy_respected": false, "tags": [], "zone": "fr-par-1"}, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "2031" + - "2366" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:50 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 1412cf70-cac4-4e23-845f-c88be9680af2 + - fedc3695-e551-439c-8ac0-582642e9f878 status: 200 OK code: 200 - duration: 77.987436ms - - id: 87 + duration: 111.664892ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -2947,29 +4366,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/marketplace/v2/local-images/8ac1fe52-01dc-4dc1-8578-73ec5d126648 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "7d21671b-69d0-42ed-a1e3-f568e85e6682"}' + content_length: 971 + body: '{"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648", "arch":"x86_64", "zone":"fr-par-1", "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"], "label":"ubuntu_focal", "type":"instance_sbs"}' headers: Content-Length: - - "143" + - "971" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 8b4f4983-9eec-4698-a5ec-bfd2a57ae14e - status: 404 Not Found - code: 404 - duration: 51.436935ms - - id: 88 + - a678b8ba-f29a-47f7-adb7-0c40450ecd76 + status: 200 OK + code: 200 + duration: 48.425582ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -2979,29 +4398,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5e15c140-3ecb-4187-bbd3-c1631068c63a"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 007960da-30e0-4d08-9536-77dccd888a6f + - 83b2c582-0d8c-49cc-aca2-61bc094a0f35 status: 404 Not Found code: 404 - duration: 52.962772ms - - id: 89 + duration: 38.4952ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -3011,29 +4430,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e"}' + content_length: 701 + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:11.805880Z", "references":[{"id":"4e742a0a-c866-4e67-8937-059f9ac9e86b", "product_resource_type":"instance_server", "product_resource_id":"52f71582-07fc-42d9-9aa5-ff5ef3927180", "created_at":"2026-02-25T12:02:11.805880Z", "type":"exclusive", "status":"attached"}], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"in_use", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":null, "zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a614835d-ca0a-4610-a7c6-4af2eedc6c7b - status: 404 Not Found - code: 404 - duration: 50.233138ms - - id: 90 + - 70c1fa03-48bd-46a7-a98b-ea3ed1110477 + status: 200 OK + code: 200 + duration: 45.573459ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -3043,29 +4462,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/user_data method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "8167374c-8a60-4b71-a8b8-5f6bf54588e4"}' + content_length: 17 + body: '{"user_data": []}' headers: Content-Length: - - "143" + - "17" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 6189f40d-d079-4ccf-8d12-38dc0759d761 - status: 404 Not Found - code: 404 - duration: 27.69915ms - - id: 91 + - f74426db-8404-4f1f-9b1d-816c7256c279 + status: 200 OK + code: 200 + duration: 52.390967ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -3075,61 +4494,68 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "0c3250f7-85a1-46bb-9305-b991db8c1fa6"}' + content_length: 20 + body: '{"private_nics": []}' headers: Content-Length: - - "143" + - "20" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:38 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - b099bd3e-585b-4cd7-8183-7bedf565afc5 - status: 404 Not Found - code: 404 - duration: 30.624177ms - - id: 92 + - 3235d981-ac2b-4010-b7d2-82cdb80c6f77 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 62.850284ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 24 host: api.scaleway.com + body: '{"placement_group":null}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 494 - body: '{"id":"8167374c-8a60-4b71-a8b8-5f6bf54588e4", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.720278Z", "updated_at":"2026-02-23T17:15:52.116760Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-23T17:15:52.116760Z", "zone":"fr-par-1"}' + content_length: 2060 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:39.125465+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "494" + - "2060" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - c39d2e09-8f17-4817-8520-ead36d95379e + - 35fd72ba-490d-4819-8a44-774ad7705669 status: 200 OK code: 200 - duration: 32.376615ms - - id: 93 + duration: 485.044449ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -3139,29 +4565,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "9ce2a532-130e-45cb-a054-fce09070d2e9"}' + content_length: 2060 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:39.125465+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "143" + - "2060" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - af18b1a0-4c3c-44ff-a856-be1f947e00c4 - status: 404 Not Found - code: 404 - duration: 37.149206ms - - id: 94 + - 59f0655c-dfa6-4b53-8adc-7ebf0c199949 + status: 200 OK + code: 200 + duration: 76.604226ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -3171,61 +4597,66 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 494 - body: '{"id":"0c3250f7-85a1-46bb-9305-b991db8c1fa6", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.741691Z", "updated_at":"2026-02-23T17:15:52.774129Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-23T17:15:52.774129Z", "zone":"fr-par-1"}' + content_length: 2060 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:39.125465+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: Content-Length: - - "494" + - "2060" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4cfea42c-1cb5-427e-8017-bd165795eb00 + - b03d2ec7-bfa2-4569-9c43-5d499326fa65 status: 200 OK code: 200 - duration: 37.506671ms - - id: 95 + duration: 85.050274ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 host: api.scaleway.com + body: '{"action":"terminate"}' headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 494 - body: '{"id":"9ce2a532-130e-45cb-a054-fce09070d2e9", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-23T17:15:26.699469Z", "updated_at":"2026-02-23T17:15:52.183681Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-23T17:15:52.183681Z", "zone":"fr-par-1"}' + content_length: 353 + body: '{"task": {"id": "8c33de83-40e2-494b-88e7-6f075dc48b3b", "description": "server_terminate", "status": "pending", "href_from": "/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180/action", "href_result": "/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180", "started_at": "2026-02-25T12:02:39.562836+00:00", "terminated_at": null, "progress": 0, "zone": "fr-par-1"}}' headers: Content-Length: - - "494" + - "353" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8c33de83-40e2-494b-88e7-6f075dc48b3b Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - d34ae05b-1552-43f7-b8e0-766f58f2562c - status: 200 OK - code: 200 - duration: 32.181011ms - - id: 96 + - 07d6c01e-f47e-425b-85ab-7eb96a71319f + status: 202 Accepted + code: 202 + duration: 206.567169ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -3235,27 +4666,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8167374c-8a60-4b71-a8b8-5f6bf54588e4 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 0 - body: "" + content_length: 2023 + body: '{"server": {"id": "52f71582-07fc-42d9-9aa5-ff5ef3927180", "name": "tf-acc-server-with-placement-group", "arch": "x86_64", "commercial_type": "PLAY2-PICO", "boot_type": "local", "organization": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "project": "fa1e3217-dc80-42ac-85c3-3f034b78b552", "hostname": "tf-acc-server-with-placement-group", "image": {"id": "8ac1fe52-01dc-4dc1-8578-73ec5d126648", "name": "Ubuntu 20.04 Focal Fossa", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2025-09-12T09:19:32.472362+00:00", "modification_date": "2025-09-12T09:19:32.472362+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": false, "volume_type": "sbs_volume", "id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911", "state": "available", "zone": "fr-par-1"}}, "tags": ["terraform-test", "scaleway_instance_server", "placement_group"], "state": "stopping", "protected": false, "state_detail": "terminating", "public_ip": null, "public_ips": [], "mac_address": "de:00:00:f5:c7:e5", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-02-25T12:02:12.023571+00:00", "modification_date": "2026-02-25T12:02:39.417125+00:00", "bootscript": null, "security_group": {"id": "da505169-540e-4c2b-b0da-c854139224e0", "name": "Default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "60", "hypervisor_id": "1001", "node_id": "179"}, "maintenances": [], "allowed_actions": ["stop_in_place", "backup"], "placement_group": null, "private_nics": [], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "52f71582-07fc-42d9-9aa5-ff5ef3927180.pub.instances.scw.cloud"}}' headers: + Content-Length: + - "2023" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 4df2ba5a-f123-4216-8cf9-ad3e5939ea87 - status: 204 No Content - code: 204 - duration: 87.85375ms - - id: 97 + - aa299855-b93b-4a28-9abb-a3de35f09d10 + status: 200 OK + code: 200 + duration: 79.919863ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -3265,27 +4698,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9ce2a532-130e-45cb-a054-fce09070d2e9 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 0 - body: "" + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "52f71582-07fc-42d9-9aa5-ff5ef3927180"}' headers: + Content-Length: + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a6c1eb7d-07c3-41e8-b932-8a63d1d55016 - status: 204 No Content - code: 204 - duration: 65.277484ms - - id: 98 + - 791b7904-0c1d-4eb4-8445-5979df84f61c + status: 404 Not Found + code: 404 + duration: 48.725614ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -3295,27 +4730,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c3250f7-85a1-46bb-9305-b991db8c1fa6 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 0 - body: "" + content_length: 143 + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_volume", "resource_id": "e8bba32c-a35c-4731-8db1-6eb3d74b0911"}' headers: + Content-Length: + - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 2540412a-6c8a-4f26-a146-6c544486149d - status: 204 No Content - code: 204 - duration: 88.452965ms - - id: 99 + - f23f6e50-4ad4-476e-84f0-dfc917c07c8d + status: 404 Not Found + code: 404 + duration: 28.127886ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -3325,27 +4762,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/2792ef0d-1995-447c-a8fa-35dd7229d267 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 0 - body: "" + content_length: 494 + body: '{"id":"e8bba32c-a35c-4731-8db1-6eb3d74b0911", "name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0", "type":"sbs_5k", "size":10000000000, "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "created_at":"2026-02-25T12:02:11.805880Z", "updated_at":"2026-02-25T12:02:41.692368Z", "references":[], "parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60", "status":"available", "tags":[], "specs":{"perf_iops":5000, "class":"sbs"}, "last_detached_at":"2026-02-25T12:02:41.692368Z", "zone":"fr-par-1"}' headers: + Content-Length: + - "494" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:55 GMT + - Wed, 25 Feb 2026 12:02:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - bb96e9cb-5c3a-4096-bdcd-9339ed549244 - status: 204 No Content - code: 204 - duration: 105.43387ms - - id: 100 + - d84e99dd-d7a1-4f5c-a097-e96f40c3afdd + status: 200 OK + code: 200 + duration: 71.852199ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -3355,29 +4794,27 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5e15c140-3ecb-4187-bbd3-c1631068c63a - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8bba32c-a35c-4731-8db1-6eb3d74b0911 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "5e15c140-3ecb-4187-bbd3-c1631068c63a"}' + content_length: 0 + body: "" headers: - Content-Length: - - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:56 GMT + - Wed, 25 Feb 2026 12:02:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 87cadf1c-dd29-49cc-a828-277f70def9ea - status: 404 Not Found - code: 404 - duration: 47.78163ms - - id: 101 + - 8b9fa672-d908-4a2c-823e-e77de86228d9 + status: 204 No Content + code: 204 + duration: 80.981604ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -3387,29 +4824,27 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ec4bdf2-9e1c-4512-b18f-d671b3dda14e - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/68c02355-8bea-4cca-9123-75d7b050c86a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "6ec4bdf2-9e1c-4512-b18f-d671b3dda14e"}' + content_length: 0 + body: "" headers: - Content-Length: - - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:56 GMT + - Wed, 25 Feb 2026 12:02:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - a8b2f1ee-2d96-4b22-bb3e-d459bd754797 - status: 404 Not Found - code: 404 - duration: 46.672227ms - - id: 102 + - 631f0f9b-ac16-4a48-90dd-bcef481002ef + status: 204 No Content + code: 204 + duration: 119.065537ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -3419,25 +4854,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.26.0; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d21671b-69d0-42ed-a1e3-f568e85e6682 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/52f71582-07fc-42d9-9aa5-ff5ef3927180 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 143 - body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "7d21671b-69d0-42ed-a1e3-f568e85e6682"}' + body: '{"type": "not_found", "message": "resource is not found", "resource": "instance_server", "resource_id": "52f71582-07fc-42d9-9aa5-ff5ef3927180"}' headers: Content-Length: - "143" Content-Type: - application/json Date: - - Mon, 23 Feb 2026 17:15:56 GMT + - Wed, 25 Feb 2026 12:02:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) X-Request-Id: - - 7a8e5a77-bb2b-498d-9422-2ba8a302f230 + - c32d6381-baa8-435b-9074-7b579f274951 status: 404 Not Found code: 404 - duration: 48.618414ms + duration: 45.875483ms From e96c8e10073e7b3b8c747fa886fe43833936073a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 26 Feb 2026 00:53:03 +0100 Subject: [PATCH 4/4] nit zone on previous PR for snapshot --- internal/services/instance/snapshot.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/services/instance/snapshot.go b/internal/services/instance/snapshot.go index c749e59d90..03357cde2d 100644 --- a/internal/services/instance/snapshot.go +++ b/internal/services/instance/snapshot.go @@ -161,7 +161,7 @@ func ResourceInstanceSnapshotCreate(ctx context.Context, d *schema.ResourceData, return diag.FromErr(err) } - err = identity.SetZonalIdentity(d, zone, res.Snapshot.ID) + err = identity.SetZonalIdentity(d, res.Snapshot.Zone, res.Snapshot.ID) if err != nil { return diag.FromErr(err) } @@ -217,7 +217,7 @@ func ResourceInstanceSnapshotRead(ctx context.Context, d *schema.ResourceData, m return diag.FromErr(err) } - err = identity.SetZonalIdentity(d, zone, snapshot.Snapshot.ID) + err = identity.SetZonalIdentity(d, snapshot.Snapshot.Zone, snapshot.Snapshot.ID) if err != nil { return diag.FromErr(err) }