diff --git a/docs/resources/instance_server.md b/docs/resources/instance_server.md index b344c8908..13f9e4766 100644 --- a/docs/resources/instance_server.md +++ b/docs/resources/instance_server.md @@ -236,6 +236,7 @@ To retrieve more information by label please use: ```scw marketplace image get l ~> **Important:** When updating `placement_group_id` the `state` must be set to `stopped`, otherwise it will fail. - `root_volume` - (Optional) Root [volume](https://www.scaleway.com/en/developers/api/instance/#path-volume-types-list-volume-types) attached to the server on creation. + - `name` - (Optional) Name of the root volume. - `volume_id` - (Optional) The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID. - `size_in_gb` - (Required) Size of the root volume in gigabytes. To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and diff --git a/internal/meta/extractors.go b/internal/meta/extractors.go index 6f5399757..414311934 100644 --- a/internal/meta/extractors.go +++ b/internal/meta/extractors.go @@ -137,6 +137,11 @@ func getKeyInRawConfigMap(rawConfig map[string]cty.Value, key string, ty cty.Typ case value.Type().IsListType(): // If it's a list and the second element of the key is an index, we look for the value in the list at the given index if index, err := strconv.Atoi(keys[1]); err == nil { + if value.Length().Equals(cty.NumberIntVal(0)).True() { + // If the list is empty, then the value is not set + return nil, false + } + return getKeyInRawConfigMap(value.AsValueSlice()[index].AsValueMap(), strings.Join(keys[2:], ""), ty) } // If it's a list and the second element of the key is '#', we look for the value in the list's first element diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 3aba629ab..a766876fd 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -126,6 +126,7 @@ func ResourceServer() *schema.Resource { "name": { Type: schema.TypeString, Computed: true, + Optional: true, Description: "Name of the root volume", }, "size_in_gb": { @@ -519,7 +520,7 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m } //// - // Configure Block Volume + // Configure Volumes //// var diags diag.Diagnostics @@ -530,6 +531,11 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m } } + err = renameRootVolumeIfNeeded(d, api, zone, res.Server.Volumes) + if err != nil { + return diag.FromErr(err) + } + //// // Set user data //// @@ -639,10 +645,6 @@ func ResourceInstanceServerCreate(ctx context.Context, d *schema.ResourceData, m return append(diags, ResourceInstanceServerRead(ctx, d, m)...) } -func errorCheck(err error, message string) bool { - return strings.Contains(err.Error(), message) -} - //gocyclo:ignore func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { api, zone, id, err := instancehelpers.InstanceAndBlockAPIWithZoneAndID(m, d.Id()) @@ -701,6 +703,9 @@ func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m a _ = d.Set("placement_group_policy_respected", server.PlacementGroup.PolicyRespected) } + //// + // Read server's public IPs + //// if ipID, hasIPID := d.GetOk("ip_id"); hasIPID { publicIP := FindIPInList(ipID.(string), server.PublicIPs) if publicIP != nil && !publicIP.Dynamic { @@ -733,52 +738,28 @@ func ResourceInstanceServerRead(ctx context.Context, d *schema.ResourceData, m a _ = d.Set("admin_password_encryption_ssh_key_id", server.AdminPasswordEncryptionSSHKeyID) } - var additionalVolumesIDs []string + //// + // Read server's volumes + //// + rootVolume := make(map[string]any, 1) + additionalVolumesIDs := make([]string, 0, len(server.Volumes)-1) for i, serverVolume := range sortVolumeServer(server.Volumes) { if i == 0 { - rootVolume := map[string]any{} - - vs, ok := d.Get("root_volume").([]map[string]any) - if ok && len(vs) > 0 { - rootVolume = vs[0] - } - - vol, err := api.GetUnknownVolume(&instancehelpers.GetUnknownVolumeRequest{ - VolumeID: serverVolume.ID, - Zone: server.Zone, - }) + rootVolume, err = flattenServerVolume(api, serverVolume, zone) if err != nil { - return diag.FromErr(fmt.Errorf("failed to read instance volume %s: %w", serverVolume.ID, err)) - } - - rootVolume["volume_id"] = zonal.NewID(zone, vol.ID).String() - if vol.Size != nil { - rootVolume["size_in_gb"] = int(uint64(*vol.Size) / gb) - } else if serverVolume.Size != nil { - rootVolume["size_in_gb"] = int(uint64(*serverVolume.Size) / gb) - } - - if vol.IsBlockVolume() { - rootVolume["sbs_iops"] = types.FlattenUint32Ptr(vol.Iops) + return diag.FromErr(err) } _, rootVolumeAttributeSet := d.GetOk("root_volume") // Related to https://github.com/hashicorp/terraform-plugin-sdk/issues/142 rootVolume["delete_on_termination"] = d.Get("root_volume.0.delete_on_termination").(bool) || !rootVolumeAttributeSet - rootVolume["volume_type"] = serverVolume.VolumeType - rootVolume["boot"] = serverVolume.Boot - rootVolume["name"] = serverVolume.Name - - _ = d.Set("root_volume", []map[string]any{rootVolume}) } else { additionalVolumesIDs = append(additionalVolumesIDs, zonal.NewID(zone, serverVolume.ID).String()) } } + _ = d.Set("root_volume", []map[string]any{rootVolume}) _ = d.Set("additional_volume_ids", additionalVolumesIDs) - if len(additionalVolumesIDs) > 0 { - _ = d.Set("additional_volume_ids", additionalVolumesIDs) - } //// // Read server user data @@ -1165,7 +1146,7 @@ func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m } } - _, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutUpdate)) + server, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutUpdate)) if err != nil { return diag.FromErr(err) } @@ -1181,6 +1162,11 @@ func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m warnings = append(warnings, ResourceInstanceServerUpdateRootVolumeIOPS(ctx, api, zone, id, types.ExpandUint32Ptr(d.Get("root_volume.0.sbs_iops")))...) } + err = renameRootVolumeIfNeeded(d, api, zone, server.Volumes) + if err != nil { + return diag.FromErr(err) + } + return append(warnings, ResourceInstanceServerRead(ctx, d, m)...) } @@ -1707,3 +1693,28 @@ func GetEndOfServiceDate(ctx context.Context, client *scw.Client, zone scw.Zone, return "", fmt.Errorf("could not find product catalog entry for %q in %s", commercialType, zone) } + +func renameRootVolumeIfNeeded(d *schema.ResourceData, api *instancehelpers.BlockAndInstanceAPI, zone scw.Zone, volumes map[string]*instanceSDK.VolumeServer) error { + if volumes == nil || volumes["0"] == nil || volumes["0"].Name != nil { + return nil + } + + if rootVolumeName, setByUser := meta.GetRawConfigForKey(d, "root_volume.0.name", cty.String); setByUser { + if *volumes["0"].Name != rootVolumeName { + _, err := api.UpdateVolume(&instanceSDK.UpdateVolumeRequest{ + Zone: zone, + VolumeID: volumes["0"].ID, + Name: scw.StringPtr(rootVolumeName.(string)), + }) + if err != nil { + return err + } + } + } + + return nil +} + +func errorCheck(err error, message string) bool { + return strings.Contains(err.Error(), message) +} diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 87dccc196..8b2936487 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -23,6 +23,11 @@ import ( const marketplaceImageType = "instance_sbs" +var apiGeneratedVolumeNamePrefixesByImage = map[string]string{ + "ubuntu_jammy": "Ubuntu 22.04 Jammy Jellyfish", + "ubuntu_focal": "Ubuntu 20.04 Focal Fossa", +} + func TestAccServer_Minimal1(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -46,7 +51,7 @@ func TestAccServer_Minimal1(t *testing.T) { 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"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.volume_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "enable_dynamic_ip", "false"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), @@ -69,7 +74,7 @@ func TestAccServer_Minimal1(t *testing.T) { 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"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.volume_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "minimal"), @@ -149,10 +154,11 @@ func TestAccServer_Minimal2(t *testing.T) { }) } -func TestAccServer_RootVolume1(t *testing.T) { +func TestAccServer_RootVolumeFromImage(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + image := "ubuntu_focal" serverID := "" resource.ParallelTest(t, resource.TestCase{ @@ -160,40 +166,62 @@ func TestAccServer_RootVolume1(t *testing.T) { CheckDestroy: instancechecks.IsServerDestroyed(tt), Steps: []resource.TestStep{ { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_instance_server" "base" { - image = "ubuntu_focal" + image = "%s" type = "DEV1-S" root_volume { volume_type = "l_ssd" size_in_gb = 10 - delete_on_termination = true + name = "named-volume" } - tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ] - }`, + tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ] + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), 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"), acctest.CheckResourceIDPersisted("scaleway_instance_server.base", &serverID), ), }, { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_instance_server" "base" { - image = "ubuntu_focal" + image = "%s" + type = "DEV1-S" + root_volume { + volume_type = "l_ssd" + size_in_gb = 10 + name = "renamed" + } + tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ] + }`, image), + Check: resource.ComposeTestCheckFunc( + isServerPresent(tt, "scaleway_instance_server.base"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.volume_type", "l_ssd"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "10"), + resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.name", "renamed"), + acctest.CheckResourceIDPersisted("scaleway_instance_server.base", &serverID), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_instance_server" "base" { + image = "%s" type = "DEV1-S" root_volume { volume_type = "l_ssd" size_in_gb = 20 delete_on_termination = true } - tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ] - }`, + tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_image" ] + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", image), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.size_in_gb", "20"), + 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. ), }, @@ -201,18 +229,85 @@ func TestAccServer_RootVolume1(t *testing.T) { }) } -func TestAccServer_RootVolume_Boot(t *testing.T) { +func TestAccServer_RootVolumeFromID(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + serverID := "" + resource.ParallelTest(t, resource.TestCase{ ProtoV6ProviderFactories: tt.ProviderFactories, CheckDestroy: instancechecks.IsServerDestroyed(tt), Steps: []resource.TestStep{ { Config: ` + resource "scaleway_instance_volume" "local" { + type = "l_ssd" + size_in_gb = 10 + } + resource "scaleway_instance_server" "base" { - image = "ubuntu_focal" + type = "DEV1-S" + root_volume { + volume_id = scaleway_instance_volume.local.id + } + tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_id" ] + }`, + Check: resource.ComposeTestCheckFunc( + isServerPresent(tt, "scaleway_instance_server.base"), + 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.TestCheckResourceAttrSet("scaleway_instance_server.base", "root_volume.0.name"), + resource.TestCheckResourceAttrPair("scaleway_instance_server.base", "root_volume.0.volume_id", "scaleway_instance_volume.local", "id"), + acctest.CheckResourceIDPersisted("scaleway_instance_server.base", &serverID), + ), + }, + { + Config: ` + resource "scaleway_instance_volume" "local" { + type = "l_ssd" + size_in_gb = 10 + name = "named-volume" + } + + resource "scaleway_instance_server" "base" { + type = "DEV1-S" + root_volume { + volume_id = scaleway_instance_volume.local.id + } + tags = [ "terraform-test", "scaleway_instance_server", "root_volume_from_id" ] + }`, + }, + { + RefreshState: true, + Check: resource.ComposeTestCheckFunc( + isServerPresent(tt, "scaleway_instance_server.base"), + 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"), // New volume name should be readable from root_volume attribute after refreshing the state + resource.TestCheckResourceAttrPair("scaleway_instance_server.base", "root_volume.0.name", "scaleway_instance_volume.local", "name"), + resource.TestCheckResourceAttrPair("scaleway_instance_server.base", "root_volume.0.volume_id", "scaleway_instance_volume.local", "id"), + acctest.CheckResourceIDPersisted("scaleway_instance_server.base", &serverID), + ), + }, + }, + }) +} + +func TestAccServer_RootVolume_Boot(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + image := "ubuntu_focal" + + resource.ParallelTest(t, resource.TestCase{ + ProtoV6ProviderFactories: tt.ProviderFactories, + CheckDestroy: instancechecks.IsServerDestroyed(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_instance_server" "base" { + image = "%s" type = "DEV1-S" state = "stopped" root_volume { @@ -220,17 +315,17 @@ func TestAccServer_RootVolume_Boot(t *testing.T) { delete_on_termination = true } tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ] - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.boot", "true"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"), ), }, { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_instance_server" "base" { - image = "ubuntu_focal" + image = "%s" type = "DEV1-S" state = "stopped" root_volume { @@ -238,11 +333,11 @@ func TestAccServer_RootVolume_Boot(t *testing.T) { delete_on_termination = true } tags = [ "terraform-test", "scaleway_instance_server", "root_volume" ] - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "root_volume.0.boot", "false"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", "ubuntu_focal"), ), }, }, @@ -955,7 +1050,7 @@ func arePrivateNICsPresent(tt *acctest.TestTools, n string) resource.TestCheckFu // serverHasNewVolume tests if volume name is generated by terraform // It is useful as volume should not be set in request when creating an instance from an image -func serverHasNewVolume(_ *acctest.TestTools, n string) resource.TestCheckFunc { +func serverHasNewVolume(_ *acctest.TestTools, n string, image string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] if !ok { @@ -967,8 +1062,13 @@ func serverHasNewVolume(_ *acctest.TestTools, n string) resource.TestCheckFunc { return errors.New("instance root_volume has no name") } - if strings.HasPrefix(rootVolumeName, "tf") { - return fmt.Errorf("root volume name is generated by provider, should be generated by api (%s)", rootVolumeName) + if !strings.HasPrefix(rootVolumeName, apiGeneratedVolumeNamePrefixesByImage[image]) { + errStr := fmt.Sprintf("unexpected root volume name %q, when it should have been generated by the Instance API, therefore be prefixed by %q", rootVolumeName, apiGeneratedVolumeNamePrefixesByImage[image]) + if strings.HasPrefix(rootVolumeName, "tf-") { + errStr += " (actual name was generated by the provider)" + } + + return errors.New(errStr) } return nil @@ -2161,13 +2261,14 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + image := "ubuntu_jammy" + resource.ParallelTest(t, resource.TestCase{ ProtoV6ProviderFactories: tt.ProviderFactories, CheckDestroy: instancechecks.IsServerDestroyed(tt), Steps: []resource.TestStep{ { - Config: ` - + Config: fmt.Sprintf(` resource "scaleway_file_filesystem" "terraform_instance_filesystem"{ name="filesystem-instance-terraform-test" size_in_gb = 100 @@ -2176,25 +2277,24 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource "scaleway_instance_server" "base" { type = "POP2-HM-2C-16G" state = "started" - image = "ubuntu_jammy" + image = "%s" tags = [ "terraform-test", "scaleway_instance_server", "state" ] filesystems { filesystem_id = scaleway_file_filesystem.terraform_instance_filesystem.id } - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", image), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "state"), ), }, { - Config: ` - + Config: fmt.Sprintf(` resource "scaleway_file_filesystem" "terraform_instance_filesystem"{ name="filesystem-instance-terraform-test" size_in_gb = 100 @@ -2208,26 +2308,26 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource "scaleway_instance_server" "base" { type = "POP2-HM-2C-16G" state = "started" - image = "ubuntu_jammy" + image = "%s" tags = [ "terraform-test", "scaleway_instance_server", "state" ] filesystems { filesystem_id = scaleway_file_filesystem.terraform_instance_filesystem_2.id } - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"), resource.TestCheckNoResourceAttr("scaleway_instance_server.base", "filesystems.1.filesystem_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", image), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "state"), ), }, { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_file_filesystem" "terraform_instance_filesystem"{ name="filesystem-instance-terraform-test" size_in_gb = 100 @@ -2241,7 +2341,7 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource "scaleway_instance_server" "base" { type = "POP2-HM-2C-16G" state = "started" - image = "ubuntu_jammy" + image = "%s" tags = [ "terraform-test", "scaleway_instance_server", "state" ] filesystems { filesystem_id = scaleway_file_filesystem.terraform_instance_filesystem_2.id @@ -2249,20 +2349,20 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { filesystems { filesystem_id = scaleway_file_filesystem.terraform_instance_filesystem.id } - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.1.filesystem_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", image), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "state"), ), }, { - Config: ` + Config: fmt.Sprintf(` resource "scaleway_block_volume" "volume" { iops = 15000 size_in_gb = 15 @@ -2281,19 +2381,19 @@ func TestAccServer_AttachDetachFileSystem(t *testing.T) { resource "scaleway_instance_server" "base" { type = "POP2-HM-2C-16G" state = "started" - image = "ubuntu_jammy" + image = "%s" tags = [ "terraform-test", "scaleway_instance_server", "state" ] filesystems { filesystem_id = scaleway_file_filesystem.terraform_instance_filesystem_2.id } - }`, + }`, image), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.base"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "type", "POP2-HM-2C-16G"), resource.TestCheckResourceAttrSet("scaleway_instance_server.base", "filesystems.0.filesystem_id"), resource.TestCheckNoResourceAttr("scaleway_instance_server.base", "filesystems.1.filesystem_id"), - serverHasNewVolume(tt, "scaleway_instance_server.base"), + serverHasNewVolume(tt, "scaleway_instance_server.base", image), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.0", "terraform-test"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.1", "scaleway_instance_server"), resource.TestCheckResourceAttr("scaleway_instance_server.base", "tags.2", "state"), diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml index 8d40e49ad..ad176193c 100644 --- a/internal/services/instance/testdata/server-block-external.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external.cassette.yaml @@ -6,9 +6,9 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 153 + content_length: 150 host: api.scaleway.com - body: "{\"name\":\"tf-volume-intelligent-wozniak\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":10000000000},\"tags\":[]}" + body: "{\"name\":\"tf-volume-zealous-bhaskara\",\"perf_iops\":5000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":10000000000},\"tags\":[]}" headers: Content-Type: - application/json @@ -20,22 +20,22 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 426 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"creating\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 409 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:22:57.375585Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"creating\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "426" + - "409" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:22:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 98011db5-bbcf-4bd6-8bd0-ceb4a6101bcb + - 32728183-c8f5-4898-b9a4-be2caab13562 status: 200 OK code: 200 - duration: 547.757485ms + duration: 224.026178ms - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 427 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 409 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:22:57.375585Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"creating\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "427" + - "409" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:22:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 25efcdfb-2460-4f96-925f-3bf99e20cadb + - a256cf4e-6050-41e6-8f40-2ef8893ac38c status: 200 OK code: 200 - duration: 147.910863ms + duration: 104.391293ms - id: 2 request: proto: HTTP/1.1 @@ -78,29 +78,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 427 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 410 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:22:57.375585Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "427" + - "410" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2f9eb867-1f03-4e03-92b7-1e21dc59a59f + - 59c0ec63-b594-40fb-a5b1-0231d6f822a1 status: 200 OK code: 200 - duration: 78.676972ms + duration: 115.553605ms - id: 3 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 410 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:22:57.375585Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" + headers: + Content-Length: + - "410" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 17:23:02 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge01) + X-Request-Id: + - 93512b90-4858-4ff6-aba9-3641e8a85cfb + status: 200 OK + code: 200 + duration: 98.306593ms +- id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -127,19 +159,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:02 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 0f605dfe-0d7a-4d44-8d26-59c97880a4c8 + - 59552224-2a6e-4170-89b5-f5f1929294ac X-Total-Count: - "68" status: 200 OK code: 200 - duration: 51.847269ms -- id: 4 + duration: 56.824565ms +- id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -166,19 +198,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:02 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: - - 36fe2366-e8ca-4478-81d8-c3a3d6ad3d56 + - a0fcd6b2-1a26-4559-b7d8-7cac71bd17b1 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 49.625471ms -- id: 5 + duration: 33.43254ms +- id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -188,29 +220,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 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\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - afc279d3-2cbc-4261-b2dd-dd148d82ac5b + - 6938150a-322f-4072-bbec-72ee1b1841dc status: 404 Not Found code: 404 - duration: 28.57114ms -- id: 6 + duration: 41.438377ms +- id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -220,29 +252,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 427 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:46.847002Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 410 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:22:57.375585Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "427" + - "410" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 1ad7fae5-cf2d-4cd7-9dc8-d30a2799052c + - ed423924-eb21-41d7-8680-6fcd7c150237 status: 200 OK code: 200 - duration: 71.413519ms -- id: 7 + duration: 84.35104ms +- id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -267,30 +299,30 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1403 - 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\"], \"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}" + content_length: 1320 + 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\"],\"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: - - "1403" + - "1320" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:47 GMT + - Fri, 07 Nov 2025 17:23:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 787cf1e1-74b3-4c21-bb96-21311270756f + - c46b2e92-1dfa-42f2-8771-236b81a146c6 status: 200 OK code: 200 - duration: 44.475041ms -- id: 8 + duration: 67.574782ms +- id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 content_length: 316 host: api.scaleway.com - body: "{\"name\":\"tf-srv-nice-mirzakhani\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" + body: "{\"name\":\"tf-srv-vigorous-agnesi\",\"dynamic_ip_required\":false,\"commercial_type\":\"PLAY2-PICO\",\"image\":\"6d3c053e-c728-4294-b23a-560b62a4d592\",\"volumes\":{\"0\":{\"boot\":false},\"1\":{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"volume_type\":\"sbs_volume\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\"}" headers: Content-Type: - application/json @@ -303,24 +335,24 @@ interactions: proto_major: 2 proto_minor: 0 content_length: 1887 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:03.783074+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - "1887" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 52bde644-1ad0-4a23-9bca-39b7078f0b19 + - c4cf45b9-18ad-4ba8-8c0c-532b980438e0 status: 201 Created code: 201 - duration: 1.30244615s -- id: 9 + duration: 1.740864245s +- id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -330,29 +362,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1887 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:03.783074+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - "1887" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3cf89d8f-ef27-4657-b7a5-f7f9093903d6 + - 4c94631c-bed6-4058-9e7a-064c10ef1629 status: 200 OK code: 200 - duration: 151.116977ms -- id: 10 + duration: 139.940526ms +- id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -362,29 +394,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1887 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:48.374336+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:03.783074+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - "1887" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 5f7bebf9-2654-43b9-b068-3383f28d71da + - 192edd10-76ac-40ce-ae6b-b9030dc71184 status: 200 OK code: 200 - duration: 124.896556ms -- id: 11 + duration: 178.067979ms +- id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -394,29 +426,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6eba496c-4fc4-4a5d-949a-953b41b6891d + - 5ca9f551-cb83-4d1e-b6a0-9d112b2b0628 status: 200 OK code: 200 - duration: 113.639241ms -- id: 12 + duration: 89.933748ms +- id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -426,29 +458,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 659 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 637 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "659" + - "637" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - dcffa370-038b-4a35-8c75-9943cae9c9a5 + - 5b2d3acb-e7bc-418c-9845-448ad07e0206 status: 200 OK code: 200 - duration: 76.909367ms -- id: 13 + duration: 94.25564ms +- id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -461,31 +493,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: "{\"task\": {\"id\": \"e9b45aec-cc2c-4278-9e29-007155f622c7\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action\", \"href_result\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"started_at\": \"2025-10-30T15:41:49.727617+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + body: "{\"task\": {\"id\": \"1e8ab54e-8f12-42f4-b12c-5fc4324c4194\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/86acecda-a8c4-45b5-823e-53e360b52f20/action\", \"href_result\": \"/servers/86acecda-a8c4-45b5-823e-53e360b52f20\", \"started_at\": \"2025-11-07T17:23:05.582089+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" headers: Content-Length: - "357" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e9b45aec-cc2c-4278-9e29-007155f622c7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e8ab54e-8f12-42f4-b12c-5fc4324c4194 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c5dde769-3395-4190-81e0-6863a2d71081 + - f6823ca5-af37-4029-9f95-dc05b08902de status: 202 Accepted code: 202 - duration: 241.820949ms -- id: 14 + duration: 305.998524ms +- id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -495,29 +527,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1909 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:49.541688+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:05.335731+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - "1909" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 17:23:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8eb6e254-68cf-4075-932e-b1520b6870b4 + - 30a29c10-3ed0-4b91-adac-c79f632cdc36 status: 200 OK code: 200 - duration: 153.371557ms -- id: 15 + duration: 135.41893ms +- id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -527,29 +559,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2044 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 55a1af77-f46f-46a3-9123-ed2e63e51d68 + - 47775c6a-700a-4bea-9349-af1092be0f0c status: 200 OK code: 200 - duration: 149.990997ms -- id: 16 + duration: 165.647928ms +- id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -559,29 +591,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2044 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 331de26e-a514-4c49-9a5b-96dfc9708d77 + - 3748e5d2-94ed-4262-bb28-c628f7a3c874 status: 200 OK code: 200 - duration: 156.496429ms -- id: 17 + duration: 198.718248ms +- id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -591,29 +623,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3dd533ce-4fd3-4a3b-9d94-dd37843f7cfc + - d8cbd5d6-8cd1-4f62-a659-4d3a5e5558d1 status: 404 Not Found code: 404 - duration: 28.545502ms -- id: 18 + duration: 30.093623ms +- id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -623,29 +655,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2cb67ccc-7539-4a42-855c-e479a101c7b8 + - 0a02775c-4ede-4bdd-81a5-80ee590baa81 status: 200 OK code: 200 - duration: 86.593483ms -- id: 19 + duration: 82.6941ms +- id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -655,7 +687,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -669,15 +701,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - adfcb04c-6220-4cd1-8d7e-be97c643041f + - d0a1b8ef-ce36-4fad-8174-7d30cbe601dc status: 200 OK code: 200 - duration: 96.73736ms -- id: 20 + duration: 103.284667ms +- id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -687,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -701,19 +733,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4d4fcfd1-e83f-4474-990c-499cc6b7506a + - 402cbf24-2634-4f8b-871a-1dbb682a66d1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.992298ms -- id: 21 + duration: 170.571098ms +- id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -723,29 +755,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 659 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 637 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "659" + - "637" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 35d40d45-b4cb-4d6b-9fd7-c930d814a21f + - 6ed6a806-f75a-4023-b67f-1fb23cf2183e status: 200 OK code: 200 - duration: 80.73802ms -- id: 22 + duration: 99.558063ms +- id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -755,29 +787,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2090 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2044 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2090" + - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4d0a3636-66ef-4fd5-99f0-27c0f4fdd95b + - df374310-cdf5-4d23-9cc6-b0356e757c0b status: 200 OK code: 200 - duration: 144.718528ms -- id: 23 + duration: 168.422937ms +- id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -787,29 +819,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4f0c7611-5fbd-4f07-a77a-0a51b28ea6e9 + - 8d7981fe-6306-4c47-9842-1a3a8d8811db status: 404 Not Found code: 404 - duration: 28.007374ms -- id: 24 + duration: 31.177378ms +- id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -819,29 +851,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9ac5622d-37c4-42f4-a53b-fe6ea34db65f + - 1739f029-3cc4-49f8-b500-f0d5475d3e18 status: 200 OK code: 200 - duration: 157.122724ms -- id: 25 + duration: 102.746137ms +- id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -851,7 +883,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -865,15 +897,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 948e5931-95d7-4f1e-8f9e-46a5f315abcd + - 691b5e42-2dfa-4b36-8d54-d386f0d063a0 status: 200 OK code: 200 - duration: 117.008953ms -- id: 26 + duration: 117.791495ms +- id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -883,7 +915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -897,19 +929,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7960d51c-f698-4942-9658-c2663a498339 + - 80d1c53a-ec55-4014-9d6c-62a58ab31028 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.827332ms -- id: 27 + duration: 110.713621ms +- id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -919,29 +951,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 659 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 637 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "659" + - "637" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 5e78f627-1182-47f8-a404-c4802f4f6b8c + - 44c7bfa8-493f-4b82-8d58-2701f55b7e86 status: 200 OK code: 200 - duration: 76.59521ms -- id: 28 + duration: 130.672643ms +- id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -951,29 +983,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2044 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c96092aa-db80-4a95-bfa5-784e8499dcb9 + - 88cafc7b-8bc6-4e4e-8b4c-ef3bc74cf671 status: 200 OK code: 200 - duration: 152.783305ms -- id: 29 + duration: 180.777705ms +- id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -983,29 +1015,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 152db8ae-1276-400b-b549-2f85b0ad863c + - 5aaf48ca-3384-408a-8c3a-1340c19b8095 status: 404 Not Found code: 404 - duration: 28.109636ms -- id: 30 + duration: 33.890369ms +- id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1015,29 +1047,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a100d2f6-0a57-470c-b3f6-19e97d4bd062 + - 669c55b0-8d59-4773-a390-568211e28be9 status: 200 OK code: 200 - duration: 93.453059ms -- id: 31 + duration: 113.887277ms +- id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1047,7 +1079,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -1061,15 +1093,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:56 GMT + - Fri, 07 Nov 2025 17:23:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6441c88f-af2b-4e10-889d-6181f1aec127 + - ef3ab233-f942-4503-86c9-a08eca121daf status: 200 OK code: 200 - duration: 100.834785ms -- id: 32 + duration: 105.932597ms +- id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1079,7 +1111,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -1093,19 +1125,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23: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: - - ebab82c4-1a12-4ea3-9f61-87f1c8d5fc2f + - 698db4fe-0533-44d9-b9e7-1eb366c02471 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.233087ms -- id: 33 + duration: 121.851276ms +- id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1115,64 +1147,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2044 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a27087ba-4bd4-4003-8462-87fb393b531f + - 263a91ee-f3c3-4bba-98dd-3adc7b616306 status: 200 OK code: 200 - duration: 164.149666ms -- id: 34 + duration: 151.219207ms +- id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 110 host: api.scaleway.com - body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-nervous-neumann\"}}}" + body: "{\"volumes\":{\"0\":{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"boot\":false,\"name\":\"tf-vol-hardcore-dubinsky\"}}}" headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1905 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 758a2e95-c9fa-4947-b4fe-91d10795c4ad + - 5845e8d2-25b1-4454-8d86-4b214f1c5dcd status: 200 OK code: 200 - duration: 327.212191ms -- id: 35 + duration: 342.621023ms +- id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1182,29 +1214,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1951 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 1905 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "1951" + - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 900eb85c-d1fa-44c7-ad1d-8b1019dab4d5 + - cc8b62fe-905f-4c99-9c12-5c04b51ba62c status: 200 OK code: 200 - duration: 159.562601ms -- id: 36 + duration: 138.592508ms +- id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1214,29 +1246,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1905 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 992c90cc-2668-4f7b-a095-312ba97823e9 + - cc4303ab-7c51-439b-bb1a-910367654a22 status: 200 OK code: 200 - duration: 136.816115ms -- id: 37 + duration: 157.829743ms +- id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1246,29 +1278,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:57 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 398ee248-74da-4056-ac97-d35f215feb13 + - ad7de5e7-2911-4ab7-bbde-e62da7615ee0 status: 404 Not Found code: 404 - duration: 25.134825ms -- id: 38 + duration: 30.584495ms +- id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1278,29 +1310,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ad6c4e78-a0d4-4154-9804-d7eecba8d52d + - a3a9e15d-bffb-425c-b905-8332d67ec94f status: 200 OK code: 200 - duration: 106.095794ms -- id: 39 + duration: 99.725257ms +- id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1310,7 +1342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -1324,15 +1356,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6c59b6d8-8207-4703-8c8f-69ada04f4802 + - 9659eed1-5761-46ce-8dcb-2b233f2700ef status: 200 OK code: 200 - duration: 111.095672ms -- id: 40 + duration: 110.747114ms +- id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1342,7 +1374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -1356,19 +1388,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23: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: - - 0f2a0717-f82b-412e-88ae-47a5797f382d + - 9332a02b-0ebd-4ce9-8885-a302e2ad3180 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.350598ms -- id: 41 + duration: 99.187186ms +- id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1378,29 +1410,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 732684c8-0efe-4939-ab13-6b22abc56826 + - c5d28ad2-fed3-4120-8dc7-411553ee519d status: 200 OK code: 200 - duration: 79.234309ms -- id: 42 + duration: 254.303928ms +- id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1410,29 +1442,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1951 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 1905 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "1951" + - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9bedb26d-9a98-4011-a6f3-85f01678d343 + - 34dc41ad-ce2e-41e1-84cf-8a4d6673729e status: 200 OK code: 200 - duration: 138.95052ms -- id: 43 + duration: 312.057447ms +- id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1442,29 +1474,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 156e4468-d86c-4e69-9ac1-94912a0d461f + - 739c5059-c4c3-48e0-9e91-e5f215711e07 status: 404 Not Found code: 404 - duration: 25.037002ms -- id: 44 + duration: 35.948192ms +- id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1474,29 +1506,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 746c71a9-4ea0-46ca-8df1-d0bf88d76af7 + - 12c4430d-3f9e-4e92-bec2-507477a4c0ec status: 200 OK code: 200 - duration: 101.542845ms -- id: 45 + duration: 98.098073ms +- id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1506,7 +1538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -1520,15 +1552,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:58 GMT + - Fri, 07 Nov 2025 17:23:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fe0655e0-8dbf-4a39-a667-c49174e1e569 + - b58b72a2-43ab-4eb9-9b0d-158413b79f2c status: 200 OK code: 200 - duration: 120.459777ms -- id: 46 + duration: 127.98636ms +- id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1538,7 +1570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -1552,50 +1584,18 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:59 GMT + - Fri, 07 Nov 2025 17:23:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9d768102-db02-42c4-be7a-5d712d639e46 + - 084c6e88-e44f-41d9-9142-a846d929d37d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.344409ms -- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" - headers: - Content-Length: - - "660" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 15:42:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 67873fff-0015-4ca9-b8a6-f95799f037d2 - status: 200 OK - code: 200 - duration: 85.883914ms + duration: 97.079992ms - id: 48 request: proto: HTTP/1.1 @@ -1606,28 +1606,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:08 GMT + - Fri, 07 Nov 2025 17:23:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 998ebe87-6710-48e1-bcac-a743552f0d3b + - 61fe3c4e-903a-4bce-8762-e9713a93e8f5 status: 200 OK code: 200 - duration: 80.895908ms + duration: 83.9193ms - id: 49 request: proto: HTTP/1.1 @@ -1638,28 +1638,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:13 GMT + - Fri, 07 Nov 2025 17:23:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6e998169-785e-4e28-9207-59d6774176dd + - 2d8b567e-4f11-443c-b29a-1e841191a1e0 status: 200 OK code: 200 - duration: 81.244593ms + duration: 88.26095ms - id: 50 request: proto: HTTP/1.1 @@ -1670,28 +1670,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:18 GMT + - Fri, 07 Nov 2025 17:23:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 004c1d3f-a060-48b4-b411-ff2b971838ab + - ce7cee41-3c34-4099-997f-b7c047899169 status: 200 OK code: 200 - duration: 96.616298ms + duration: 95.21902ms - id: 51 request: proto: HTTP/1.1 @@ -1702,28 +1702,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:24 GMT + - Fri, 07 Nov 2025 17:23:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fd8c4125-c8c0-4dcb-a0d6-479a10f19f5c + - 6bd884e9-4431-49b5-a053-f412b1d36d69 status: 200 OK code: 200 - duration: 83.521456ms + duration: 90.262847ms - id: 52 request: proto: HTTP/1.1 @@ -1734,28 +1734,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 638 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:04.055149Z\",\"references\":[{\"id\":\"b6d3cad5-9df9-489d-a78c-b5b50caaf150\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:04.055149Z\",\"type\":\"exclusive\",\"status\":\"detaching\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "638" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:29 GMT + - Fri, 07 Nov 2025 17:23:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 959bb8a1-37e1-4058-824c-a20d1bb64b0c + - 0753f7bb-67bc-4b67-98ab-c03e74810040 status: 200 OK code: 200 - duration: 89.021824ms + duration: 84.021724ms - id: 53 request: proto: HTTP/1.1 @@ -1766,28 +1766,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 660 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:41:48.628302Z\", \"references\":[{\"id\":\"22861352-4b65-4172-a8a2-a846beeb59ea\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.628302Z\", \"type\":\"exclusive\", \"status\":\"detaching\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 435 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:45.379185Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "660" + - "435" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:34 GMT + - Fri, 07 Nov 2025 17:23:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a1553b30-76a5-4d92-b2d2-ae418400a188 + - 864a8f39-773b-4656-81c7-5a9181255214 status: 200 OK code: 200 - duration: 91.184332ms + duration: 95.269304ms - id: 54 request: proto: HTTP/1.1 @@ -1798,28 +1798,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 452 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 435 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:45.379185Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "452" + - "435" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:39 GMT + - Fri, 07 Nov 2025 17:23:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 35a47af6-c89b-47ea-b694-95502aa32198 + - fdb1aad1-2ae3-41cd-8c7f-a8bb9dc92ba8 status: 200 OK code: 200 - duration: 82.343128ms + duration: 91.003608ms - id: 55 request: proto: HTTP/1.1 @@ -1830,61 +1830,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 452 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" - headers: - Content-Length: - - "452" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 15:42:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 04ce9878-a3d7-409d-9754-3cb6d2b9ee08 - status: 200 OK - code: 200 - duration: 93.68318ms -- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1905 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:39 GMT + - Fri, 07 Nov 2025 17:23:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 450c99f8-16ed-4c89-bbc3-c490238b4941 + - 35e8f403-eda1-47d6-98d9-72edbc135f1b status: 200 OK code: 200 - duration: 131.403535ms -- id: 57 + duration: 172.88808ms +- id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1894,29 +1862,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:39 GMT + - Fri, 07 Nov 2025 17:23:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4ca0d730-d340-4a49-b71b-a66fb4412298 + - cdce403f-790e-4b6e-a9bd-a3502b9eef53 status: 404 Not Found code: 404 - duration: 31.877966ms -- id: 58 + duration: 26.584608ms +- id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1926,29 +1894,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:39 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - edbe6ee8-a5c5-4f5a-92e7-d4809e1ce544 + - 45a883af-1df5-45d2-9c41-4dd7ced60394 status: 200 OK code: 200 - duration: 118.1954ms -- id: 59 + duration: 170.861005ms +- id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1958,7 +1926,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -1972,15 +1940,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:39 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ad0431a8-d0fa-471e-ba43-9786fb4b81e4 + - da2cbe2b-5550-4595-b94c-50f185caff4a status: 200 OK code: 200 - duration: 88.022141ms -- id: 60 + duration: 108.918102ms +- id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -1990,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -2004,19 +1972,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a43bef87-acf5-45c4-9df0-e0c6830e2a47 + - 6816b1f8-ec95-4732-b3c4-36eca359be33 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.38577ms -- id: 61 + duration: 107.13217ms +- id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2026,29 +1994,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1951 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 1905 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "1951" + - "1905" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 52173472-b788-4799-9612-92f5a513cabd + - b27f1076-d10b-4712-8e00-b6dc834aa8db status: 200 OK code: 200 - duration: 140.748785ms -- id: 62 + duration: 152.654613ms +- id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2058,29 +2026,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 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\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ae6a4c07-6f5e-4261-8760-dd17ba56b545 + - d9ba5a0b-9a0e-4bf5-a114-affb40938aae status: 404 Not Found code: 404 - duration: 31.028613ms -- id: 63 + duration: 25.78125ms +- id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2090,64 +2058,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 452 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:39.151581Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 435 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:45.379185Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "452" + - "435" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e51d5fec-6f3f-459b-bd26-8f5ce904d51e + - dce2871c-55cb-433a-a81d-5288c88857fe status: 200 OK code: 200 - duration: 96.55088ms -- id: 64 + duration: 85.553809ms +- id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 184 + content_length: 181 host: api.scaleway.com - body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-friendly-booth\"},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"}}}" + body: "{\"volumes\":{\"0\":{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"boot\":false,\"name\":\"tf-vol-angry-chaum\"},\"1\":{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"volume_type\":\"sbs_volume\"}}}" headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1984 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "1984" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 12468299-8eee-42e8-bae0-4ae201d23b4c + - 0813349a-4075-4367-8b4d-2ee9bcaa8e89 status: 200 OK code: 200 - duration: 439.994406ms -- id: 65 + duration: 450.736155ms +- id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2157,29 +2125,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 1984 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "1984" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:40 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8a9b8ff4-d4c8-4871-95bf-494a1b7ac24f + - 8e531ba7-1739-4963-a068-d9754aa524cd status: 200 OK code: 200 - duration: 134.347157ms -- id: 66 + duration: 143.87241ms +- id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2189,29 +2157,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2030 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 1984 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2030" + - "1984" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - b51cb30e-fe8f-4f2e-ab17-5393740d9351 + - 854e715e-d41d-405e-b8f2-ac973654ac64 status: 200 OK code: 200 - duration: 153.511716ms -- id: 67 + duration: 151.670276ms +- id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2221,29 +2189,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - badb5fb8-05f4-43e6-af39-32330cd67051 + - 8f2b0234-8523-4af7-a979-58064b61631d status: 404 Not Found code: 404 - duration: 34.779499ms -- id: 68 + duration: 36.759666ms +- id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2253,29 +2221,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9c93b3e0-be38-40bb-b046-a8461d6bfb8b + - e90a0fa8-90d7-4efc-a26d-2167466040ca status: 200 OK code: 200 - duration: 93.637735ms -- id: 69 + duration: 79.838401ms +- id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2285,7 +2253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -2299,15 +2267,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 44437097-471c-4068-90a7-194f736784c4 + - 601afe2d-eca2-4972-b587-8cb174571919 status: 200 OK code: 200 - duration: 102.336943ms -- id: 70 + duration: 104.323529ms +- id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2317,7 +2285,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -2331,19 +2299,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4329313c-7da0-483b-9379-0ebbd7ee3ad2 + - eb455d0c-0af3-4ce9-bbaf-ad010dd5fbe7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.560116ms -- id: 71 + duration: 108.132849ms +- id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2353,29 +2321,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 684 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 662 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:46.805711Z\",\"references\":[{\"id\":\"c715b540-93c5-4bba-b5a5-20680dd931b1\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:46.805711Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "684" + - "662" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:41 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 1b86ff37-559d-4379-9d9f-61f1748ba668 + - 6cdd52ba-ea22-46a5-80cf-28757df98f92 status: 200 OK code: 200 - duration: 100.701074ms -- id: 72 + duration: 95.655901ms +- id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2385,29 +2353,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2090 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2044 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2090" + - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 337fc962-2701-4945-bd71-0297cd360d54 + - 1b308c4a-98e4-4cd6-8cc0-a33a7d2fb54e status: 200 OK code: 200 - duration: 163.641367ms -- id: 73 + duration: 121.976362ms +- id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2417,29 +2385,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 964aa50c-0b14-4b82-afa8-1b500694fd00 + - 84975e57-0cac-4ca7-abe2-1aee3632a010 status: 404 Not Found code: 404 - duration: 32.762296ms -- id: 74 + duration: 27.794268ms +- id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2449,29 +2417,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - f324e580-0bab-4d41-8622-daa24574c425 + - cea942da-3e27-4298-9ced-b1c72d29e201 status: 200 OK code: 200 - duration: 105.422451ms -- id: 75 + duration: 98.592161ms +- id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2481,7 +2449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -2495,15 +2463,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 12328584-55fc-4c87-8bc1-b9bb86de0ca5 + - d1509800-cdc5-4cd7-9136-63f1c16bb18c status: 200 OK code: 200 - duration: 104.755921ms -- id: 76 + duration: 102.074738ms +- id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2513,7 +2481,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -2527,19 +2495,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 41b24df7-9bc8-477b-8ace-a5b5bab22bcb + - 6fab1b93-68fa-4fe5-9aa2-191dacc0c5f0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 90.708862ms -- id: 77 + duration: 92.272079ms +- id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2549,29 +2517,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 684 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 662 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:46.805711Z\",\"references\":[{\"id\":\"c715b540-93c5-4bba-b5a5-20680dd931b1\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:46.805711Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "684" + - "662" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 8e28dbf1-0995-4460-bee0-2512d19f3cdf + - 27270d7d-419a-4bc0-8608-74f1fc7dcd8c status: 200 OK code: 200 - duration: 83.470734ms -- id: 78 + duration: 106.249935ms +- id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2581,29 +2549,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2044 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 90da755b-ae6c-4ee0-825a-9c9da984afa0 + - 0e1be719-0fac-4d64-a29e-6b5c46e62e70 status: 200 OK code: 200 - duration: 149.384565ms -- id: 79 + duration: 142.271404ms +- id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2613,29 +2581,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 110a86cd-e581-4bb3-b906-85a4dd82d183 + - b74c5216-f53c-4f77-866b-910b5cb43503 status: 404 Not Found code: 404 - duration: 25.034399ms -- id: 80 + duration: 35.922284ms +- id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2645,29 +2613,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 59069d45-18ae-45bd-8132-983cc2826f42 + - b1b46808-94cc-4243-bf03-21bf45227bf9 status: 200 OK code: 200 - duration: 79.429444ms -- id: 81 + duration: 95.126277ms +- id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2677,7 +2645,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -2691,15 +2659,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:42 GMT + - Fri, 07 Nov 2025 17:23:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - bef64d13-6222-401c-9edb-834eb75935d7 + - 948c21fb-f85c-4c0c-891a-8c8d96a24ee6 status: 200 OK code: 200 - duration: 99.567168ms -- id: 82 + duration: 98.861997ms +- id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2709,7 +2677,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -2723,26 +2691,26 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:43 GMT + - Fri, 07 Nov 2025 17:23:49 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7cd7183d-abf0-49ba-89b1-8cae64f18778 + - 5dbf9a6c-9621-4b4f-bfdf-0299081e43d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.065184ms -- id: 83 + duration: 95.459272ms +- id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 148 host: api.scaleway.com - body: "{\"name\":\"tf-volume-nice-davinci\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":15000000000},\"tags\":[]}" + body: "{\"name\":\"tf-volume-upbeat-keller\",\"perf_iops\":15000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"from_empty\":{\"size\":15000000000},\"tags\":[]}" headers: Content-Type: - application/json @@ -2754,23 +2722,23 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 421 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"creating\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 408 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:49.467562Z\",\"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: - - "421" + - "408" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:43 GMT + - Fri, 07 Nov 2025 17:23:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 07a2b58e-56fb-4124-8a17-8c6d020d258b + - 55199003-752f-4bd7-b015-12e0fc479726 status: 200 OK code: 200 - duration: 200.326401ms -- id: 84 + duration: 176.113164ms +- id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -2780,29 +2748,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 421 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"creating\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 408 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:49.467562Z\",\"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: - - "421" + - "408" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:43 GMT + - Fri, 07 Nov 2025 17:23:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e93b407a-b635-4c29-9a7a-c355762f21f0 + - e1c2179f-baf5-4507-a04f-06a2fd0516e7 status: 200 OK code: 200 - duration: 87.432837ms -- id: 85 + duration: 75.469532ms +- id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -2812,29 +2780,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 422 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 409 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:49.467562Z\",\"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: - - "422" + - "409" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:48 GMT + - Fri, 07 Nov 2025 17:23:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9b88d67b-c0fa-4754-979b-37386febe27b + - 7e3924f6-34d0-46dc-b77a-4a86b212155d status: 200 OK code: 200 - duration: 98.88553ms -- id: 86 + duration: 90.233642ms +- id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,29 +2812,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 422 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 409 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:49.467562Z\",\"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: - - "422" + - "409" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:48 GMT + - Fri, 07 Nov 2025 17:23:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - fd8a0a17-2a5f-44bb-8662-7506ae3179a2 + - fd5e6cd6-584a-4388-8db0-e50cd2fca401 status: 200 OK code: 200 - duration: 80.676945ms -- id: 87 + duration: 81.567468ms +- id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -2876,29 +2844,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2090 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2044 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2090" + - "2044" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:48 GMT + - Fri, 07 Nov 2025 17:23:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - a540843d-d4e3-4f03-8a22-7070ed3fc02a + - 5c0c2a07-eb68-4e01-915b-d550a0db9062 status: 200 OK code: 200 - duration: 160.218639ms -- id: 88 + duration: 173.664539ms +- id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -2908,29 +2876,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 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\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:48 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ed1b7158-aad8-484e-9124-458fdb31c277 + - 0a5edeee-6ed9-4381-82f4-a92601e76120 status: 404 Not Found code: 404 - duration: 26.035728ms -- id: 89 + duration: 32.956257ms +- id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -2940,29 +2908,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 684 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 662 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:46.805711Z\",\"references\":[{\"id\":\"c715b540-93c5-4bba-b5a5-20680dd931b1\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:46.805711Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "684" + - "662" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - d42d3f70-9a09-4d47-b123-ae40eebdf26f + - 5d00ba68-a217-4804-9a70-9b3f5677483d status: 200 OK code: 200 - duration: 98.091981ms -- id: 90 + duration: 110.643401ms +- id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -2972,29 +2940,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 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\": \"7b8c853d-939c-4852-b689-889cf61b5401\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 136f43ca-aa32-48a6-b820-dd06377b1e00 + - b9069e6e-a183-4c71-9b7e-0eae18bc6378 status: 404 Not Found code: 404 - duration: 28.214445ms -- id: 91 + duration: 25.380617ms +- id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -3004,64 +2972,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 422 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:43.348440Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 409 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:49.467562Z\",\"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: - - "422" + - "409" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - db4b6766-0c00-48e0-bc27-05a76035abfb + - 58bce993-2f1e-4590-80ac-65ce6a78fc78 status: 200 OK code: 200 - duration: 82.400307ms -- id: 92 + duration: 85.845948ms +- id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 264 + content_length: 260 host: api.scaleway.com - body: "{\"volumes\":{\"0\":{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\",\"boot\":false,\"name\":\"tf-vol-flamboyant-newton\"},\"1\":{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"volume_type\":\"sbs_volume\"},\"2\":{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\",\"volume_type\":\"sbs_volume\"}}}" + body: "{\"volumes\":{\"0\":{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"boot\":false,\"name\":\"tf-vol-eager-poitras\"},\"1\":{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"volume_type\":\"sbs_volume\"},\"2\":{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"volume_type\":\"sbs_volume\"}}}" headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2123 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2123" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 081f8c38-9586-4689-bdad-4cc7f33574b6 + - 39852693-1ff4-4948-b399-ae8393e11fdf status: 200 OK code: 200 - duration: 441.881935ms -- id: 93 + duration: 477.287391ms +- id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -3071,29 +3039,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2169 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2123 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2169" + - "2123" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - aca8dcaf-90cb-4a88-9dc9-c40e29a3ea3f + - 8a82454a-d080-45c3-a6e4-95da12b62cd1 status: 200 OK code: 200 - duration: 146.922288ms -- id: 94 + duration: 149.957112ms +- id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -3103,29 +3071,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2169 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2123 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"state\": \"attaching\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2169" + - "2123" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - e1d106ec-51ee-494d-bc14-5df47f42b946 + - 55134312-097f-49f1-801c-3772854764fa status: 200 OK code: 200 - duration: 160.402004ms -- id: 95 + duration: 140.358655ms +- id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -3135,29 +3103,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7a82da36-89dc-4024-a61d-0afa2142e8d0 + - 408c163c-4c2a-4bb5-a2ca-2bbb40df8e7e status: 404 Not Found code: 404 - duration: 32.782594ms -- id: 96 + duration: 27.724858ms +- id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3167,29 +3135,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:49 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - aa33e930-abee-4964-bf33-d9888a205512 + - c0c6a73c-2703-414f-b421-86a2116be641 status: 200 OK code: 200 - duration: 77.576048ms -- id: 97 + duration: 86.791293ms +- id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -3199,7 +3167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -3213,15 +3181,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - c050d2b7-aaa8-4435-a655-10e90b40b47a + - ac134dfa-f083-49d4-b87c-b4ff39f704ba status: 200 OK code: 200 - duration: 107.367602ms -- id: 98 + duration: 97.798812ms +- id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3231,7 +3199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -3245,19 +3213,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3a194418-d38d-4a6c-b4a8-8abb6c9f046c + - 20819295-48ae-40e3-9461-fb23cafb36e3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.984474ms -- id: 99 + duration: 95.852801ms +- id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -3267,29 +3235,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 654 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:49.280530Z\", \"references\":[{\"id\":\"a2731bad-25e6-44c4-aef3-c5e540db9746\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:49.280530Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":null, \"zone\":\"fr-par-1\"}" + content_length: 636 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:23:55.400898Z\",\"references\":[{\"id\":\"39371623-196a-4ee6-9d0a-bd6c36ed91af\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:55.400898Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":15000,\"class\":\"sbs\"},\"last_detached_at\":null,\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "654" + - "636" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 540d59e2-4158-4ada-87b4-c23e771b19cf + - 50e767ff-ddda-4c9f-ad4b-0306e7188766 status: 200 OK code: 200 - duration: 96.617035ms -- id: 100 + duration: 95.0529ms +- id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -3299,29 +3267,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 684 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:40.602381Z\", \"references\":[{\"id\":\"f1f1b906-f6d0-43cb-96cb-11d782a6476c\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:42:40.602381Z\", \"type\":\"exclusive\", \"status\":\"attached\"}], \"parent_snapshot_id\":null, \"status\":\"in_use\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:39.151581Z\", \"zone\":\"fr-par-1\"}" + content_length: 662 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:23:46.805711Z\",\"references\":[{\"id\":\"c715b540-93c5-4bba-b5a5-20680dd931b1\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:46.805711Z\",\"type\":\"exclusive\",\"status\":\"attached\"}],\"parent_snapshot_id\":null,\"status\":\"in_use\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:23:45.379185Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "684" + - "662" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 9a16b8b3-31f7-40dd-a8f0-12f2cb607d58 + - 2961ab9c-c4f5-4632-a3a7-a6599da4ae59 status: 200 OK code: 200 - duration: 96.438761ms -- id: 101 + duration: 104.497486ms +- id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -3331,29 +3299,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2183 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2183" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3c426662-3bcf-48cd-9023-92b4f3c97e42 + - c3148250-de9a-488c-a24a-0796c6ee1de4 status: 200 OK code: 200 - duration: 160.881573ms -- id: 102 + duration: 162.665224ms +- id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -3363,29 +3331,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - b4aaa6da-6a1b-4581-8921-f449d82c6982 + - a92d0b6a-d4aa-401d-9b32-5760a7f4679b status: 404 Not Found code: 404 - duration: 25.906125ms -- id: 103 + duration: 28.271554ms +- id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -3395,29 +3363,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 705 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:41:48.496123Z\", \"references\":[{\"id\":\"841a86e5-1d51-4e86-8782-39aa5952cf13\", \"product_resource_type\":\"instance_server\", \"product_resource_id\":\"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"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: 686 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:23:03.953559Z\",\"references\":[{\"id\":\"bdf97f97-f6d7-46bd-b06a-de3ecc564013\",\"product_resource_type\":\"instance_server\",\"product_resource_id\":\"86acecda-a8c4-45b5-823e-53e360b52f20\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"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" + - "686" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3dc18a05-80cf-4e0a-92a3-a349dd9fd940 + - f58619ba-005e-4944-a703-5d4db8ed9b87 status: 200 OK code: 200 - duration: 98.750578ms -- id: 104 + duration: 88.82002ms +- id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -3427,7 +3395,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/user_data method: GET response: proto: HTTP/2.0 @@ -3441,15 +3409,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:50 GMT + - Fri, 07 Nov 2025 17:23:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - aaca8ed5-f0b1-4c66-b7e1-7d5b9457c790 + - 4c5b1b36-ef97-4c5f-ad07-b99af490c274 status: 200 OK code: 200 - duration: 95.245762ms -- id: 105 + duration: 93.696343ms +- id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -3459,7 +3427,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/private_nics method: GET response: proto: HTTP/2.0 @@ -3473,19 +3441,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:51 GMT + - Fri, 07 Nov 2025 17:23:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6aa3d89c-bd7c-4082-b6b8-2dbebf1c3efb + - 97fd2b5a-1b5e-403d-a5ba-23f21f269e97 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.722901ms -- id: 106 + duration: 145.341037ms +- id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -3495,29 +3463,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2229 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2183 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2229" + - "2183" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:51 GMT + - Fri, 07 Nov 2025 17:23:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 26841ec6-30af-4c67-a779-4c2394f4ece0 + - 62297db1-ab5c-4f79-9d5d-0f55271a90a7 status: 200 OK code: 200 - duration: 162.796485ms -- id: 107 + duration: 156.54701ms +- id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -3527,29 +3495,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 2183 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"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:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:41:53.248562+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"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:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:09.784411+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - "2183" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:51 GMT + - Fri, 07 Nov 2025 17:23:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - f490b294-fe77-4e36-95fe-b4ab8a518f31 + - 8234dbd9-bad0-4284-9734-ec32a71abfa8 status: 200 OK code: 200 - duration: 164.975894ms -- id: 108 + duration: 177.686918ms +- id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -3562,31 +3530,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: "{\"task\": {\"id\": \"8493a631-fab0-4504-b486-6eeb38616f0a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e/action\", \"href_result\": \"/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"started_at\": \"2025-10-30T15:42:51.850310+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + body: "{\"task\": {\"id\": \"1378d4f1-21fe-4142-b72e-effbceba1f8a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/86acecda-a8c4-45b5-823e-53e360b52f20/action\", \"href_result\": \"/servers/86acecda-a8c4-45b5-823e-53e360b52f20\", \"started_at\": \"2025-11-07T17:23:58.066969+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" headers: Content-Length: - "353" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:51 GMT + - Fri, 07 Nov 2025 17:23:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8493a631-fab0-4504-b486-6eeb38616f0a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1378d4f1-21fe-4142-b72e-effbceba1f8a Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 58320e52-2261-4460-92f6-1c7b9cb94a47 + - 54b1f8db-7c40-43da-a4f5-e9e860ac047b status: 202 Accepted code: 202 - duration: 362.256615ms -- id: 109 + duration: 371.447737ms +- id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -3596,29 +3564,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2192 - body: "{\"server\": {\"id\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\", \"name\": \"tf-srv-nice-mirzakhani\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-nice-mirzakhani\", \"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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"7b8c853d-939c-4852-b689-889cf61b5401\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a3\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:48.374336+00:00\", \"modification_date\": \"2025-10-30T15:42:51.594744+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"501\", \"node_id\": \"146\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2146 + body: "{\"server\": {\"id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\", \"name\": \"tf-srv-vigorous-agnesi\", \"arch\": \"x86_64\", \"commercial_type\": \"PLAY2-PICO\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-vigorous-agnesi\", \"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\": \"cce36444-6be8-4cbb-b8be-614092e14115\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"1\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\", \"state\": \"available\", \"zone\": \"fr-par-1\"}, \"2\": {\"boot\": false, \"volume_type\": \"sbs_volume\", \"id\": \"24ee9b35-13ea-4692-8f7c-b657e73844a9\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d2:07:9f\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T17:23:03.783074+00:00\", \"modification_date\": \"2025-11-07T17:23:57.813706+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"30\", \"hypervisor_id\": \"701\", \"node_id\": \"168\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2192" + - "2146" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:52 GMT + - Fri, 07 Nov 2025 17:23:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 2ba523b8-8d2a-4f81-b13d-f015636ccf99 + - 86f8d139-c1ec-47b8-b20b-438b34f2178b status: 200 OK code: 200 - duration: 158.559718ms -- id: 110 + duration: 143.543133ms +- id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -3628,29 +3596,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 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\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 522439bb-1824-4f8b-888d-986327cb7fa6 + - 07589936-7210-425e-8f1e-ddc57d0c1de5 status: 404 Not Found code: 404 - duration: 72.099756ms -- id: 111 + duration: 58.305216ms +- id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -3660,29 +3628,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 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\": \"d71257d0-5e7b-4934-afd3-5b6126462d45\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"cce36444-6be8-4cbb-b8be-614092e14115\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - ad627e4e-3f24-459f-a437-c245e6eb9ce2 + - 38e0e307-3e05-47fd-b796-7f39124fc306 status: 404 Not Found code: 404 - duration: 35.609647ms -- id: 112 + duration: 33.727285ms +- id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -3692,29 +3660,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 498 - body: "{\"id\":\"d71257d0-5e7b-4934-afd3-5b6126462d45\", \"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:48.496123Z\", \"updated_at\":\"2025-10-30T15:42:53.762844Z\", \"references\":[], \"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\", \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.762844Z\", \"zone\":\"fr-par-1\"}" + content_length: 484 + body: "{\"id\":\"cce36444-6be8-4cbb-b8be-614092e14115\",\"name\":\"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:03.953559Z\",\"updated_at\":\"2025-11-07T17:24:00.125253Z\",\"references\":[],\"parent_snapshot_id\":\"36b4ce54-c67a-4f68-ab74-839515834352\",\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:24:00.125253Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "498" + - "484" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 4e6aec0d-971e-4b9e-8431-dc38841d206b + - 79717f55-ef40-4732-8a71-96f2edb74c56 status: 200 OK code: 200 - duration: 113.147524ms -- id: 113 + duration: 118.489669ms +- id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -3724,7 +3692,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d71257d0-5e7b-4934-afd3-5b6126462d45 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cce36444-6be8-4cbb-b8be-614092e14115 method: DELETE response: proto: HTTP/2.0 @@ -3736,15 +3704,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 3f8af24b-b4a6-4d16-b842-8b00325beb63 + - dd47a969-5abb-4a2c-ba2d-0b95a04abaf8 status: 204 No Content code: 204 - duration: 192.237533ms -- id: 114 + duration: 158.069819ms +- id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -3754,29 +3722,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 452 - body: "{\"id\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\", \"name\":\"tf-volume-intelligent-wozniak\", \"type\":\"sbs_5k\", \"size\":10000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:41:46.847002Z\", \"updated_at\":\"2025-10-30T15:42:53.844364Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":5000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.844364Z\", \"zone\":\"fr-par-1\"}" + content_length: 434 + body: "{\"id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"name\":\"tf-volume-upbeat-keller\",\"type\":\"sbs_15k\",\"size\":15000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:23:49.467562Z\",\"updated_at\":\"2025-11-07T17:24:00.296445Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":15000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:24:00.296445Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "452" + - "434" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - dfee3e7e-b2a9-460f-a5c8-da81e835bab4 + - 20d51f86-dd7b-444a-83b5-f609701379a9 status: 200 OK code: 200 - duration: 102.286111ms -- id: 115 + duration: 89.132207ms +- id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -3786,29 +3754,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 447 - body: "{\"id\":\"7b8c853d-939c-4852-b689-889cf61b5401\", \"name\":\"tf-volume-nice-davinci\", \"type\":\"sbs_15k\", \"size\":15000000000, \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T15:42:43.348440Z\", \"updated_at\":\"2025-10-30T15:42:53.916545Z\", \"references\":[], \"parent_snapshot_id\":null, \"status\":\"available\", \"tags\":[], \"specs\":{\"perf_iops\":15000, \"class\":\"sbs\"}, \"last_detached_at\":\"2025-10-30T15:42:53.916545Z\", \"zone\":\"fr-par-1\"}" + content_length: 435 + body: "{\"id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"name\":\"tf-volume-zealous-bhaskara\",\"type\":\"sbs_5k\",\"size\":10000000000,\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"created_at\":\"2025-11-07T17:22:57.375585Z\",\"updated_at\":\"2025-11-07T17:24:00.209244Z\",\"references\":[],\"parent_snapshot_id\":null,\"status\":\"available\",\"tags\":[],\"specs\":{\"perf_iops\":5000,\"class\":\"sbs\"},\"last_detached_at\":\"2025-11-07T17:24:00.209244Z\",\"zone\":\"fr-par-1\"}" headers: Content-Length: - - "447" + - "435" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 0865f3ba-eb35-420c-b327-b74a0da3a7a7 + - f226053c-8853-4af3-bf30-69b4ce8083b0 status: 200 OK code: 200 - duration: 106.676596ms -- id: 116 + duration: 94.082287ms +- id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -3818,7 +3786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 method: DELETE response: proto: HTTP/2.0 @@ -3830,15 +3798,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 52c3b120-bfed-439b-9807-6b0111c1961b + - 6c7be7d5-5b5b-4f3b-8edb-6828c49c266c status: 204 No Content code: 204 - duration: 171.503811ms -- id: 117 + duration: 151.289533ms +- id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -3848,7 +3816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 method: DELETE response: proto: HTTP/2.0 @@ -3860,15 +3828,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 01d308af-5931-4a47-949b-032f338bbdcb + - a65895e5-a928-436b-bd9a-7ae20bd69a39 status: 204 No Content code: 204 - duration: 172.625424ms -- id: 118 + duration: 194.212978ms +- id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -3878,29 +3846,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a7b0a15c-b623-4272-81eb-319fcbee528c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/24ee9b35-13ea-4692-8f7c-b657e73844a9 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\":\"a7b0a15c-b623-4272-81eb-319fcbee528c\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"24ee9b35-13ea-4692-8f7c-b657e73844a9\",\"type\":\"not_found\"}" headers: Content-Length: - "127" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 6d3e0561-a00e-490b-929d-f7d84cea9686 + - 2dce2c29-50a5-428e-8f31-a5d985770d36 status: 404 Not Found code: 404 - duration: 89.404657ms -- id: 119 + duration: 85.658546ms +- id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -3910,29 +3878,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b8c853d-939c-4852-b689-889cf61b5401 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f11f3f2-303b-4bcb-94b6-8f2cfaec2139 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\":\"7b8c853d-939c-4852-b689-889cf61b5401\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"0f11f3f2-303b-4bcb-94b6-8f2cfaec2139\",\"type\":\"not_found\"}" headers: Content-Length: - "127" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 5849c634-0fbe-4130-be3e-e64d978c7af1 + - 4d728cc4-4481-483f-960e-b48e04c6584f status: 404 Not Found code: 404 - duration: 86.497605ms -- id: 120 + duration: 83.190404ms +- id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -3942,25 +3910,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/918002d5-86bd-492b-ab08-f1ede6ad2a6e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/86acecda-a8c4-45b5-823e-53e360b52f20 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\": \"918002d5-86bd-492b-ab08-f1ede6ad2a6e\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"86acecda-a8c4-45b5-823e-53e360b52f20\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:57 GMT + - Fri, 07 Nov 2025 17:24:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge01) X-Request-Id: - - 7296540b-0007-439e-8bd3-817fc384e989 + - 0d10aedc-4a57-4c12-8cab-b0e557b24ae8 status: 404 Not Found code: 404 - duration: 60.246582ms + duration: 61.580834ms diff --git a/internal/services/instance/testdata/server-root-volume-from-id.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-id.cassette.yaml new file mode 100644 index 000000000..d46d47507 --- /dev/null +++ b/internal/services/instance/testdata/server-root-volume-from-id.cassette.yaml @@ -0,0 +1,1824 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 121 + host: api.scaleway.com + body: "{\"name\":\"tf-vol-admiring-bose\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"volume_type\":\"l_ssd\",\"size\":10000000000}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": null, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:41.461202+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "422" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a658551a-28bb-4b84-b42b-a5d047bb08c6 + status: 201 Created + code: 201 + duration: 253.480671ms +- id: 1 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": null, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:41.461202+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "422" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 778ec99d-1625-4822-8182-1b573abf5623 + status: 200 OK + code: 200 + duration: 100.821862ms +- id: 2 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 422 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": null, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:41.461202+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "422" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a8bcd14e-670c-422b-9590-f49fd4845d37 + status: 200 OK + code: 200 + duration: 98.338817ms +- id: 3 + 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.25.1; 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: 39264 + body: "{\"servers\": {\"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"monthly_price\": 36.1496, \"hourly_price\": 0.04952, \"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\": null, \"monthly_price\": 18.6588, \"hourly_price\": 0.02556, \"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\": null, \"monthly_price\": 9.9864, \"hourly_price\": 0.01368, \"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\": null, \"monthly_price\": 53.3484, \"hourly_price\": 0.07308, \"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\": null, \"monthly_price\": 576.262, \"hourly_price\": 0.7894, \"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\": null, \"monthly_price\": 296.672, \"hourly_price\": 0.4064, \"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\": null, \"monthly_price\": 149.066, \"hourly_price\": 0.2042, \"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\": null, \"monthly_price\": 1220.122, \"hourly_price\": 1.6714, \"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\": null, \"monthly_price\": 74.168, \"hourly_price\": 0.1016, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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}, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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}}}" + headers: + Content-Length: + - "39264" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:41 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 1d6fc0b3-ccfb-430f-99f9-5e5f50ddd379 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 68.61241ms +- id: 4 + 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.25.1; 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: 14295 + body: "{\"servers\": {\"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"monthly_price\": 907.098, \"hourly_price\": 1.2426, \"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\": null, \"monthly_price\": 3.3507, \"hourly_price\": 0.00459, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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\": null, \"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: + - "14295" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:41 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 4629e671-d86d-4a10-a888-99964ca93839 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 68.459169ms +- id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 341 + host: api.scaleway.com + body: "{\"name\":\"tf-srv-agitated-albattani\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"volumes\":{\"0\":{\"id\":\"b6be86a3-c9b2-4af6-9227-860fbe4437e4\",\"boot\":false,\"name\":\"tf-vol-vigorous-nobel\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"root_volume_from_id\"]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; 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: 1617 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "1617" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:42 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c9d835ce-437e-4b69-aa22-0dfa98f0086c + status: 201 Created + code: 201 + duration: 978.025698ms +- id: 6 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1617 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "1617" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 0f5d1352-e5b4-45ea-a9e2-c7f5c6fd4d9a + status: 200 OK + code: 200 + duration: 138.87937ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1617 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "1617" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 84324a39-3024-4e15-8ef1-4fb9f3f01d38 + status: 200 OK + code: 200 + duration: 141.621318ms +- id: 8 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"ab74ed96-19f1-49aa-b57a-401e1cceb235\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/action\", \"href_result\": \"/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"started_at\": \"2025-11-07T14:36:43.607669+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ab74ed96-19f1-49aa-b57a-401e1cceb235 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 24d6e497-fd9b-44af-9fa3-f6aa1be213da + status: 202 Accepted + code: 202 + duration: 497.362184ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1639 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:43.180422+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "1639" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:43 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5d547418-9a90-4a43-80b6-d36697e7ecf2 + status: 200 OK + code: 200 + duration: 134.627048ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1774" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - cc5a60e5-2bc0-4b83-b9a2-6897d529c32c + status: 200 OK + code: 200 + duration: 141.304826ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1774" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e5f98167-e378-459b-8752-333d96506a8f + status: 200 OK + code: 200 + duration: 135.398144ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b2cddfc2-b028-46b7-92dc-b30ad8d08094 + status: 200 OK + code: 200 + duration: 100.372934ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c709668c-d5bb-4f1c-a287-9cd76217a4d5 + status: 200 OK + code: 200 + duration: 111.576276ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:49 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 75392e75-6870-41da-90b6-191b0fd70975 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.869997ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1774" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a956af7c-26ee-422b-b881-2330ce89b272 + status: 200 OK + code: 200 + duration: 138.954448ms +- id: 16 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 911fd7a7-9792-4041-a5b3-ab447f9e8e67 + status: 200 OK + code: 200 + duration: 132.320302ms +- id: 17 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1774" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 857dc623-bca0-488d-86ed-4cce7bb0b0bf + status: 200 OK + code: 200 + duration: 130.114121ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 20196d84-ea0a-42a8-9bae-6ebc201b82f8 + status: 200 OK + code: 200 + duration: 96.600514ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7e0d911b-8505-432f-a9c2-18f7da325b7c + status: 200 OK + code: 200 + duration: 106.292524ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:50 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5554f830-8d0c-4a2e-be75-8e96a445e3fe + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.362391ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 651351ad-3a1a-4db7-a010-bb6e2e43effa + status: 200 OK + code: 200 + duration: 105.02304ms +- id: 22 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1774 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1774" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - aeb00423-0ecc-4130-9376-a1ef481cba27 + status: 200 OK + code: 200 + duration: 139.259532ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 501 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"tf-vol-admiring-bose\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:42.777237+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "501" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 872571e9-f2d3-4f64-88bd-aef70a3ce9bb + status: 200 OK + code: 200 + duration: 184.909234ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 0cfd6eb2-9d73-4044-a0d8-4e448d9f175a + status: 200 OK + code: 200 + duration: 99.067726ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:51 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b779e982-6318-44ed-997b-640d4556817f + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 118.538137ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 33 + host: api.scaleway.com + body: "{\"name\":\"named-volume\",\"tags\":[]}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 445629ed-a6ef-4336-b84e-4c7b27c78d1a + status: 200 OK + code: 200 + duration: 140.733128ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 504b2676-c071-4610-8f1f-24f399281117 + status: 200 OK + code: 200 + duration: 103.778088ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6ec628bc-aaa5-4f51-a62a-4a7cce459108 + status: 200 OK + code: 200 + duration: 100.946795ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:51 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - ea724344-0ec5-4989-91e4-acec5b53b091 + status: 200 OK + code: 200 + duration: 129.074765ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 24184cf1-6896-45c9-a96f-109ec89dba13 + status: 200 OK + code: 200 + duration: 95.88246ms +- id: 31 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6c2e7a90-bfb4-48fb-b022-8ea296ada336 + status: 200 OK + code: 200 + duration: 107.401578ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:52 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6fe83785-ccdf-4b5a-ac41-0510437aaea2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 97.349598ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 78fa6920-cb1a-4c5b-86f1-b85988ecfeaa + status: 200 OK + code: 200 + duration: 99.933951ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 7a8acb67-5cf6-4292-a251-79fa1b19bd86 + status: 200 OK + code: 200 + duration: 140.679252ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 598a4d1e-e6f8-4b77-8bea-b516a6ac828c + status: 200 OK + code: 200 + duration: 95.314252ms +- id: 36 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 54f43d6d-7509-4cf4-bf22-6fbe831e9665 + status: 200 OK + code: 200 + duration: 108.278318ms +- id: 37 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 282545f3-f843-46b7-99ba-d14f9ebcf76d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 136.908688ms +- id: 38 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 100b5ec8-b62e-4aa6-9f08-b5f91c39869d + status: 200 OK + code: 200 + duration: 128.169282ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 04b556e6-b274-44c5-9ab8-67eaadf67862 + status: 200 OK + code: 200 + duration: 92.459061ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 5decb5a2-50a9-4b5b-970d-5ec97c02b5b7 + status: 200 OK + code: 200 + duration: 126.323696ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 493 + body: "{\"volume\": {\"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "493" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6ea60af0-8d99-4667-86e7-aa5091f8df92 + status: 200 OK + code: 200 + duration: 121.836025ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a546a233-51ec-4723-85c4-bc81701e3283 + status: 200 OK + code: 200 + duration: 101.140715ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/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: + - Fri, 07 Nov 2025 14:36:53 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 1eec284d-332d-429e-83d8-2b4209d2e98b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 103.981316ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - c93d4a82-22e1-46d8-aa98-3577b98f703e + status: 200 OK + code: 200 + duration: 126.703481ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1766 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:46.028781+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1766" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6ea12e22-70dc-447e-bd81-3b87e89ac12f + status: 200 OK + code: 200 + duration: 141.105911ms +- id: 46 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 353 + body: "{\"task\": {\"id\": \"af8964fe-c028-436b-ba19-42f60b97add3\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000/action\", \"href_result\": \"/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"started_at\": \"2025-11-07T14:36:54.603894+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "353" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/af8964fe-c028-436b-ba19-42f60b97add3 + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a4c1179e-b502-47e9-894d-6af777c6f6cf + status: 202 Accepted + code: 202 + duration: 305.579603ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1729 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:54.356018+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1729" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:54 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - cd09e8c8-8f23-43fe-8771-c434a9f69604 + status: 200 OK + code: 200 + duration: 126.555369ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1729 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:54.356018+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1729" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:36:59 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - a6c91de4-71b6-429f-9f9b-3aeefe7b2309 + status: 200 OK + code: 200 + duration: 131.214454ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1729 + body: "{\"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-agitated-albattani\", \"image\": null, \"volumes\": {\"0\": {\"boot\": false, \"id\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\", \"name\": \"tf-srv-agitated-albattani\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:36:41.461202+00:00\", \"modification_date\": \"2025-11-07T14:36:51.302791+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_id\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fd:b1\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:36:42.777237+00:00\", \"modification_date\": \"2025-11-07T14:36:54.356018+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"35\", \"hypervisor_id\": \"1202\", \"node_id\": \"17\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "1729" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:05 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 6c2f307e-8558-4d6d-a498-5cfe1b148587 + status: 200 OK + code: 200 + duration: 169.241395ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + 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\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - e98a9feb-9a5a-42c6-88ae-713e7e576fe9 + status: 404 Not Found + code: 404 + duration: 45.325909ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + 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\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 9dd6e7ed-63b6-4923-a079-4315bb50abda + status: 404 Not Found + code: 404 + duration: 35.708728ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + 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\":\"b6be86a3-c9b2-4af6-9227-860fbe4437e4\",\"type\":\"not_found\"}" + headers: + Content-Length: + - "127" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 18b9eb9a-20f6-4115-a098-02e39eb96e81 + status: 404 Not Found + code: 404 + duration: 22.11125ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b6be86a3-c9b2-4af6-9227-860fbe4437e4 + 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\": \"b6be86a3-c9b2-4af6-9227-860fbe4437e4\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - 3bd0b87b-b7e5-4a2c-aef0-846e07e08c02 + status: 404 Not Found + code: 404 + duration: 25.0373ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8aba64fe-b392-4924-8f81-c33b0fe9f000 + 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\": \"8aba64fe-b392-4924-8f81-c33b0fe9f000\"}" + headers: + Content-Length: + - "143" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:37:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + X-Request-Id: + - b5a771e5-7488-459d-9730-aa21611024b6 + status: 404 Not Found + code: 404 + duration: 52.003714ms diff --git a/internal/services/instance/testdata/server-root-volume1.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-image.cassette.yaml similarity index 54% rename from internal/services/instance/testdata/server-root-volume1.cassette.yaml rename to internal/services/instance/testdata/server-root-volume-from-image.cassette.yaml index 7333ad609..30f68da15 100644 --- a/internal/services/instance/testdata/server-root-volume1.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-image.cassette.yaml @@ -28,18 +28,18 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 14:44:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - b6de758c-180d-4a51-97f8-3535d7767738 + - 3c9e230e-79cf-40f4-8a95-14b72872bb17 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 67.735501ms + duration: 73.03988ms - id: 1 request: proto: HTTP/1.1 @@ -67,18 +67,18 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 14:44:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - bb06fe5a-5eeb-430f-b58d-c649207f7b21 + - 95b825d7-3c2a-456f-a7f5-8652de41171a X-Total-Count: - "68" status: 200 OK code: 200 - duration: 38.012579ms + duration: 58.166375ms - id: 2 request: proto: HTTP/1.1 @@ -104,30 +104,30 @@ interactions: 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}" + content_length: 397 + 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" + - "397" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:49 GMT + - Fri, 07 Nov 2025 14:44:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 3057e0da-f41a-43e2-8e89-3ce4fe61930d + - a88069a2-4066-4e0c-9410-2fb6a37074a0 status: 200 OK code: 200 - duration: 46.101131ms + duration: 110.757006ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 340 + content_length: 350 host: api.scaleway.com - body: "{\"name\":\"tf-srv-serene-dirac\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false,\"size\":10000000000,\"volume_type\":\"l_ssd\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"root_volume\"]}" + body: "{\"name\":\"tf-srv-jovial-shaw\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false,\"size\":10000000000,\"volume_type\":\"l_ssd\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"root_volume_from_image\"]}" headers: Content-Type: - application/json @@ -139,25 +139,585 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2210 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + content_length: 2198 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.401479+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.401479+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - - "2210" + - "2198" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:50 GMT + - Fri, 07 Nov 2025 14:44:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 635c2703-8ac0-44a3-b390-8d35b1786ae0 + - 9451c852-4d93-4324-96ec-4abdca4bda55 status: 201 Created code: 201 - duration: 838.282741ms + duration: 1.069450606s - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 23 + host: api.scaleway.com + body: "{\"name\":\"named-volume\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 48105734-6447-4d03-aeab-79e10a4643c9 + status: 200 OK + code: 200 + duration: 137.472159ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2186 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.401479+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "2186" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - b8e96c3d-0255-40e8-b7b5-5f0e8f0b1d06 + status: 200 OK + code: 200 + duration: 146.622039ms +- id: 6 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2186 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.401479+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "2186" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 7a2bc9ea-e4f6-49a4-9a13-fec0413833cb + status: 200 OK + code: 200 + duration: 153.887567ms +- id: 7 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 357 + body: "{\"task\": {\"id\": \"5ef4a4a8-f0ad-4050-9e55-a84db7fcbd5b\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/action\", \"href_result\": \"/servers/08dd55ad-b359-4747-852e-0a4732ea1d63\", \"started_at\": \"2025-11-07T14:44:31.329816+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "357" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5ef4a4a8-f0ad-4050-9e55-a84db7fcbd5b + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - c7b6a308-4e4c-4598-8f47-3a364375b237 + status: 202 Accepted + code: 202 + duration: 266.675895ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2208 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:31.127776+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + headers: + Content-Length: + - "2208" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:31 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 9310f642-801d-4940-830e-081e780188c2 + status: 200 OK + code: 200 + duration: 200.719403ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:31.127776+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2310" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:36 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - f29826f3-be3a-454c-b963-6087cec23367 + status: 200 OK + code: 200 + duration: 173.553318ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2310 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:31.127776+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2310" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:41 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 3719beec-e367-4d36-af40-72a3de8a2328 + status: 200 OK + code: 200 + duration: 200.560417ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - abe5db30-5b63-4c69-a320-234cc5e2e758 + status: 200 OK + code: 200 + duration: 150.667738ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 3c403044-2455-4c92-bb72-70a190114931 + status: 200 OK + code: 200 + duration: 141.745359ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - b05b0815-2fbe-485f-b79e-1220093d5c36 + status: 200 OK + code: 200 + duration: 97.191231ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/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: + - Fri, 07 Nov 2025 14:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 543f21a6-03b2-4f3d-a27a-d7404b76e645 + status: 200 OK + code: 200 + duration: 83.858784ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/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: + - Fri, 07 Nov 2025 14:44:47 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 69e94171-0bf0-4232-a437-f491641440c9 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 108.235959ms +- id: 16 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:47 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 0a334abe-f544-4e40-ac6f-12b895575f80 + status: 200 OK + code: 200 + duration: 128.889008ms +- id: 17 + 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 7516e933-b59b-4617-8d97-d593a3686634 + status: 200 OK + code: 200 + duration: 122.514599ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 486 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "486" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 576fc6f0-67ea-4fd6-8535-cb26deb45bd5 + status: 200 OK + code: 200 + duration: 125.847507ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/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: + - Fri, 07 Nov 2025 14:44:48 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - ead732e3-a883-4245-b1a9-9afaf5d00399 + status: 200 OK + code: 200 + duration: 106.604214ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/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: + - Fri, 07 Nov 2025 14:44:48 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 2166d2db-0af5-44dd-bd21-64d052873936 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 88.653796ms +- id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -167,29 +727,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2210 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2210" + - "2341" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:50 GMT + - Fri, 07 Nov 2025 14:44:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - fe0492aa-a3aa-4da1-9085-53a6c2b6480a + - b225a1fa-ebfb-4f20-9143-3974abf3bdce status: 200 OK code: 200 - duration: 170.746787ms -- id: 5 + duration: 150.244558ms +- id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -199,66 +759,61 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2210 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + content_length: 486 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "2210" + - "486" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:50 GMT + - Fri, 07 Nov 2025 14:44:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 18607faf-dd06-40de-a658-d05fcaa23f1c + - fb53bcfa-62d0-429b-8405-f0d1d0e11898 status: 200 OK code: 200 - duration: 130.083175ms -- id: 6 + duration: 101.661101ms +- id: 23 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 357 - body: "{\"task\": {\"id\": \"c20456c1-2c03-41a5-9bc6-77de59f8f363\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action\", \"href_result\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"started_at\": \"2025-10-30T15:41:50.644740+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + content_length: 17 + body: "{\"user_data\": []}" headers: Content-Length: - - "357" + - "17" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c20456c1-2c03-41a5-9bc6-77de59f8f363 + - Fri, 07 Nov 2025 14:44:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - acb6c686-c72f-4856-8ba1-34728c61fbcb - status: 202 Accepted - code: 202 - duration: 274.374349ms -- id: 7 + - 4235bb85-92b5-4206-bdf5-643b49ff39f2 + status: 200 OK + code: 200 + duration: 113.151588ms +- id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -268,29 +823,33 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/private_nics method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2232 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:50.423257+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" + content_length: 20 + body: "{\"private_nics\": []}" headers: Content-Length: - - "2232" + - "20" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:50 GMT + - Fri, 07 Nov 2025 14:44:48 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 97902567-5718-4ead-b734-c1ead5f1884a + - beec5f6a-9b4f-468a-9ab7-00b34132a66f + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 141.571212ms -- id: 8 + duration: 122.986477ms +- id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -300,29 +859,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2336 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:50.423257+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2336" + - "2341" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:41:55 GMT + - Fri, 07 Nov 2025 14:44:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - aa419dbc-b462-408b-88c2-18e42746c53f + - 9f002c18-ab34-436c-b265-f2bedd6ccdfc status: 200 OK code: 200 - duration: 132.938652ms -- id: 9 + duration: 139.318523ms +- id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 103 + host: api.scaleway.com + body: "{\"volumes\":{\"0\":{\"id\":\"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\",\"boot\":false,\"name\":\"tf-vol-crazy-pare\"}}}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2341" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 392ebf6d-d9fd-4f77-b2ab-14f0c4c991ee + status: 200 OK + code: 200 + duration: 212.135643ms +- id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -332,29 +926,64 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2413 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2341 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"named-volume\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:30.686303+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2413" + - "2341" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 00cb0d1f-8707-4cc6-a704-b557a9249107 + - be942024-8289-4294-bd4c-80cd5b61d0e8 status: 200 OK code: 200 - duration: 142.713088ms -- id: 10 + duration: 140.027549ms +- id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 18 + host: api.scaleway.com + body: "{\"name\":\"renamed\"}" + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 481 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + headers: + Content-Length: + - "481" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:44:49 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 08313955-e75d-4c04-8f2e-4d9d18921922 + status: 200 OK + code: 200 + duration: 144.709298ms +- id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -364,29 +993,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2367 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2367" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 58ac5d92-f970-470c-8c1a-48f69399c252 + - acc4ec26-acd2-4e77-8268-7f5e6168da2a status: 200 OK code: 200 - duration: 139.358586ms -- id: 11 + duration: 129.626444ms +- id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -396,29 +1025,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 519 - body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + content_length: 481 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "519" + - "481" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - ec011201-423f-4634-89ca-2804dfa376e7 + - 129c2b3a-2743-4933-b7f2-902326c2e63b status: 200 OK code: 200 - duration: 102.933594ms -- id: 12 + duration: 103.135457ms +- id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -428,7 +1057,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/user_data method: GET response: proto: HTTP/2.0 @@ -442,15 +1071,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 4bca0f70-a682-49b6-afa8-030409977e57 + - a4c7f7c5-0afb-4e31-ab32-fc6d211f25ac status: 200 OK code: 200 - duration: 93.764645ms -- id: 13 + duration: 92.674338ms +- id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -460,7 +1089,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/private_nics method: GET response: proto: HTTP/2.0 @@ -474,19 +1103,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - a932c182-a7c2-4411-84ad-d716269aa631 + - 20764283-42eb-454d-9e7c-80aba7dbd6aa X-Total-Count: - "0" status: 200 OK code: 200 - duration: 103.558315ms -- id: 14 + duration: 106.537224ms +- id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -496,29 +1125,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2413 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2413" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:01 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - c53f7bf5-f835-4ae0-9bbf-a553244bccbd + - 14a205de-108d-43c0-98a8-4076d57dd185 status: 200 OK code: 200 - duration: 122.511615ms -- id: 15 + duration: 146.208881ms +- id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -528,29 +1157,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2413 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2413" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 6dbad346-afc1-42b1-9037-a931103cff3f + - 70be1e4c-fde5-4273-b7fc-f8ea95f5f855 status: 200 OK code: 200 - duration: 153.262636ms -- id: 16 + duration: 126.108935ms +- id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -560,29 +1189,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 519 - body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + content_length: 481 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "519" + - "481" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 47d648c6-81ad-495f-a5bb-ab78140cfb10 + - f7ceb71d-89b4-473f-bf1f-8e8b65f041f8 status: 200 OK code: 200 - duration: 103.037127ms -- id: 17 + duration: 91.943913ms +- id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -592,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/user_data method: GET response: proto: HTTP/2.0 @@ -606,15 +1235,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 05058994-39f1-4dc1-ac13-0d4af1207c7d + - 396e5fa1-d026-463c-8d85-b5929fe7caa3 status: 200 OK code: 200 - duration: 95.36104ms -- id: 18 + duration: 114.237802ms +- id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -624,7 +1253,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/private_nics method: GET response: proto: HTTP/2.0 @@ -638,19 +1267,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 181805b3-403d-4adf-86c6-e4dfeca66183 + - 49077fd6-57c3-4564-9ff8-f693bb857ba3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.896284ms -- id: 19 + duration: 95.317437ms +- id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -660,29 +1289,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2367 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2367" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 5084166d-7e14-4e2a-88ba-45faef7aa1b3 + - 73a29c88-0316-45ce-b56d-08f027e77af9 status: 200 OK code: 200 - duration: 138.647342ms -- id: 20 + duration: 138.311392ms +- id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -692,29 +1321,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 519 - body: "{\"volume\": {\"id\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + content_length: 481 + body: "{\"volume\": {\"id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "519" + - "481" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 06266cec-b80d-410b-b812-e7ded5dc54c4 + - b0c9b490-f220-47d7-a897-56ba6bdfb297 status: 200 OK code: 200 - duration: 132.096976ms -- id: 21 + duration: 97.691199ms +- id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -724,7 +1353,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/user_data method: GET response: proto: HTTP/2.0 @@ -738,15 +1367,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 47074928-57bc-4ace-b469-d9d0230c0a7e + - 79bdd89b-838a-466c-86e0-e3fd0f42737a status: 200 OK code: 200 - duration: 84.123171ms -- id: 22 + duration: 95.777974ms +- id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -756,7 +1385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/private_nics method: GET response: proto: HTTP/2.0 @@ -770,19 +1399,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:02 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - ba0c9a93-0622-47cf-a359-cfa889b476bb + - 17d0126a-58d2-486c-b130-693d8b90566b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.178716ms -- id: 23 + duration: 104.350895ms +- id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -792,29 +1421,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2413 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2413" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:03 GMT + - Fri, 07 Nov 2025 14:44:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 968c5169-d4db-4e73-a3cd-e3cca48b8c0f + - 60bba793-7c6b-4ac6-9d85-817b3600982a status: 200 OK code: 200 - duration: 126.033673ms -- id: 24 + duration: 138.315599ms +- id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -824,29 +1453,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2367 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2367" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:03 GMT + - Fri, 07 Nov 2025 14:44:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - feda1958-65c9-4ae8-83c2-f9e7ea217ff4 + - c6198a98-22b9-47cb-ba6e-a98f64b1f0ce status: 200 OK code: 200 - duration: 157.217324ms -- id: 25 + duration: 108.641577ms +- id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -856,29 +1485,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2367 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:58.279275+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2336 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:44.638044+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2367" + - "2336" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:03 GMT + - Fri, 07 Nov 2025 14:44:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 363c0781-5077-4a7d-a0c0-7280092de4fb + - ef0fb04b-584b-4a34-94ac-9aa868f98385 status: 200 OK code: 200 - duration: 141.520231ms -- id: 26 + duration: 136.735351ms +- id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -891,31 +1520,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: "{\"task\": {\"id\": \"bf3c7cee-59d6-456e-b541-37cce55abc75\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb/action\", \"href_result\": \"/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"started_at\": \"2025-10-30T15:42:03.750199+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + body: "{\"task\": {\"id\": \"78ef4667-f51a-4067-a7c8-4042707892f2\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/08dd55ad-b359-4747-852e-0a4732ea1d63/action\", \"href_result\": \"/servers/08dd55ad-b359-4747-852e-0a4732ea1d63\", \"started_at\": \"2025-11-07T14:44:52.373131+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" headers: Content-Length: - "353" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:03 GMT + - Fri, 07 Nov 2025 14:44:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bf3c7cee-59d6-456e-b541-37cce55abc75 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/78ef4667-f51a-4067-a7c8-4042707892f2 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - a5348935-de2c-4431-af5c-62e87702f4f1 + - ae48e341-6fc2-4771-830a-2372889f2524 status: 202 Accepted code: 202 - duration: 280.370174ms -- id: 27 + duration: 260.307163ms +- id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -925,29 +1554,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2376 - body: "{\"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-serene-dirac\", \"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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\", \"name\": \"tf-srv-serene-dirac\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:41:49.892352+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:a9\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:41:49.892352+00:00\", \"modification_date\": \"2025-10-30T15:42:03.524243+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"41\", \"hypervisor_id\": \"1901\", \"node_id\": \"11\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2299 + body: "{\"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-jovial-shaw\", \"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\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\", \"name\": \"renamed\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\", \"name\": \"tf-srv-jovial-shaw\"}, \"size\": 10000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:49.679866+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:43\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:30.401479+00:00\", \"modification_date\": \"2025-11-07T14:44:52.173631+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"93\", \"hypervisor_id\": \"501\", \"node_id\": \"3\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2376" + - "2299" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:03 GMT + - Fri, 07 Nov 2025 14:44:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - c1e90033-f0ae-4518-8e92-f0ca4cbaeef4 + - 7c19d588-dcd1-4d2a-92d8-692dbfeb3681 status: 200 OK code: 200 - duration: 127.948755ms -- id: 28 + duration: 131.359874ms +- id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -957,29 +1586,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5dad668e-c8cd-4926-a516-597ea4aaeafb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/08dd55ad-b359-4747-852e-0a4732ea1d63 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\": \"5dad668e-c8cd-4926-a516-597ea4aaeafb\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"08dd55ad-b359-4747-852e-0a4732ea1d63\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:08 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - d479ece7-7711-4899-ae43-45b6a375da37 + - 3f1c64cf-8df4-48e2-ac49-9a172ff475c8 status: 404 Not Found code: 404 - duration: 54.892443ms -- id: 29 + duration: 50.539887ms +- id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -989,29 +1618,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 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\": \"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:08 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 09875cc8-ec21-4d70-af5d-535575b369dc + - 832c9394-a5dd-4bc9-a140-0926bfba0806 status: 404 Not Found code: 404 - duration: 28.665649ms -- id: 30 + duration: 33.290323ms +- id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1021,29 +1650,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0bccd1e4-2ac7-4f19-9891-65e16b00f0c2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ed25e6d2-1ad7-4506-8e96-2a1676ffba69 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\":\"0bccd1e4-2ac7-4f19-9891-65e16b00f0c2\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"ed25e6d2-1ad7-4506-8e96-2a1676ffba69\",\"type\":\"not_found\"}" headers: Content-Length: - "127" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:09 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - e67163c3-b4d6-4376-bac2-fc299be784a8 + - 9173f6b7-f613-48b4-8476-719f58548cf1 status: 404 Not Found code: 404 - duration: 19.470702ms -- id: 31 + duration: 19.808735ms +- id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1070,19 +1699,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:09 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - be18e2c1-e2d6-4b8d-9cc8-8a73583e50c2 + - fece6605-08fe-42e0-8889-b1c7a9d34286 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 45.793887ms -- id: 32 + duration: 93.612608ms +- id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1109,19 +1738,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:09 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - e7c2e778-de31-4436-9fd7-a5345c387376 + - 1cb37eda-bb0c-4dea-b1ef-0297cef8c231 X-Total-Count: - "68" status: 200 OK code: 200 - duration: 42.439325ms -- id: 33 + duration: 57.767613ms +- id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1146,30 +1775,30 @@ interactions: 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}" + content_length: 397 + 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" + - "397" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:09 GMT + - Fri, 07 Nov 2025 14:44:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 04f63bf2-c9c9-4490-92c6-1d6a80b600cf + - 83694706-5fb1-4002-ae47-faa55aa5b574 status: 200 OK code: 200 - duration: 40.515616ms -- id: 34 + duration: 109.111775ms +- id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 340 + content_length: 352 host: api.scaleway.com - body: "{\"name\":\"tf-srv-sweet-swartz\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false,\"size\":20000000000,\"volume_type\":\"l_ssd\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"root_volume\"]}" + body: "{\"name\":\"tf-srv-zealous-knuth\",\"dynamic_ip_required\":false,\"commercial_type\":\"DEV1-S\",\"image\":\"a02f91b9-de8a-4bd5-8f95-d79cb7d39806\",\"volumes\":{\"0\":{\"boot\":false,\"size\":20000000000,\"volume_type\":\"l_ssd\"}},\"boot_type\":\"local\",\"project\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[\"terraform-test\",\"scaleway_instance_server\",\"root_volume_from_image\"]}" headers: Content-Type: - application/json @@ -1181,25 +1810,25 @@ interactions: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2256 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2204 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - - "2256" + - "2204" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:09 GMT + - Fri, 07 Nov 2025 14:44:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - ef232ede-7815-48d9-8af7-c72e743901bf + - ad465e76-9cae-47d1-a26f-087f54185a9d status: 201 Created code: 201 - duration: 732.207961ms -- id: 35 + duration: 771.963066ms +- id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1209,29 +1838,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2256 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2204 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - - "2256" + - "2204" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:10 GMT + - Fri, 07 Nov 2025 14:44:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 24c93137-448b-4fd2-adcb-32fb947fc76a + - e3dd9ecd-b77c-4a2b-ac83-022798093b54 status: 200 OK code: 200 - duration: 126.451077ms -- id: 36 + duration: 133.459449ms +- id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1241,29 +1870,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2256 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2204 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopped\", \"protected\": false, \"state_detail\": \"\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - - "2256" + - "2204" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:10 GMT + - Fri, 07 Nov 2025 14:44:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 3d993917-3754-4cb3-83da-ddb455c91118 + - 4b7f5dab-d6a0-4907-bdad-9eaf1ef2a7df status: 200 OK code: 200 - duration: 141.219199ms -- id: 37 + duration: 140.410393ms +- id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1276,63 +1905,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 357 - body: "{\"task\": {\"id\": \"0205e9d6-54d1-4c14-9025-e54fcf90498c\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action\", \"href_result\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3\", \"started_at\": \"2025-10-30T15:42:10.401994+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + body: "{\"task\": {\"id\": \"75381afb-a1e8-4ac7-a452-78ef72d9eb11\", \"description\": \"server_batch_poweron\", \"status\": \"pending\", \"href_from\": \"/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/action\", \"href_result\": \"/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"started_at\": \"2025-11-07T14:44:59.211348+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" headers: Content-Length: - "357" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:10 GMT + - Fri, 07 Nov 2025 14:44:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0205e9d6-54d1-4c14-9025-e54fcf90498c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/75381afb-a1e8-4ac7-a452-78ef72d9eb11 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 60971e91-a9a0-4e16-a000-80c37058454b + - 6c5de7da-a1ed-483c-9667-dbd37f08d178 status: 202 Accepted code: 202 - duration: 283.727856ms -- id: 38 - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 2278 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" - headers: - Content-Length: - - "2278" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 15:42:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0bdd2a50-7710-468c-a223-490e996c261e - status: 200 OK - code: 200 - duration: 162.301133ms -- id: 39 + duration: 258.146161ms +- id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1342,29 +1939,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2335 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2226 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"allocating node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:59.004171+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"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}}" headers: Content-Length: - - "2335" + - "2226" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:15 GMT + - Fri, 07 Nov 2025 14:44:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 14cdc0ff-a559-47cc-a170-df4fa82d3d87 + - fc915418-b503-4985-ae1d-ca67afeadc95 status: 200 OK code: 200 - duration: 150.548128ms -- id: 40 + duration: 134.57074ms +- id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1374,29 +1971,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2381 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:10.182529+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2329 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"starting\", \"protected\": false, \"state_detail\": \"provisioning node\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:59.004171+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2381" + - "2329" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:20 GMT + - Fri, 07 Nov 2025 14:45:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 5ee3bf40-b92d-430d-a519-ade3ece3c171 + - d4bfaa3a-05d7-49ea-a09e-83b42441966a status: 200 OK code: 200 - duration: 118.28833ms -- id: 41 + duration: 152.250446ms +- id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -1406,29 +2003,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2412 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2412" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 7362154c-fd3d-4d00-aca9-acbe33383ceb + - b38d218a-9a68-4ba8-b217-12ff12dd4ce2 status: 200 OK code: 200 - duration: 138.735814ms -- id: 42 + duration: 181.393722ms +- id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -1438,29 +2035,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2366 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2366" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - b90f7579-e4cc-46af-8ce2-4dbb62697241 + - df15a5c6-bdd9-46b5-978b-546336197018 status: 200 OK code: 200 - duration: 173.051904ms -- id: 43 + duration: 132.897593ms +- id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -1470,29 +2067,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/389c0aff-e093-44cd-a37d-abf459555b41 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 519 - body: "{\"volume\": {\"id\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + content_length: 500 + body: "{\"volume\": {\"id\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "519" + - "500" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - f8e23cce-ba5f-4c03-9318-72c1077195f4 + - 4b16e7e6-741c-4c21-89fb-66220e824d2b status: 200 OK code: 200 - duration: 119.813552ms -- id: 44 + duration: 98.010177ms +- id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -1502,7 +2099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/user_data method: GET response: proto: HTTP/2.0 @@ -1516,15 +2113,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 8d43c0ab-ac09-4eda-a8cb-82df099a554c + - 4272f903-783f-485a-a69e-49860ca29e9b status: 200 OK code: 200 - duration: 106.398518ms -- id: 45 + duration: 123.556546ms +- id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -1534,7 +2131,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/private_nics method: GET response: proto: HTTP/2.0 @@ -1548,19 +2145,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 7fe38917-29c4-4732-8aeb-d88073ba144b + - 46e32fbd-b81b-4c64-bc76-a94cbe45363a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.928099ms -- id: 46 + duration: 111.292314ms +- id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -1570,29 +2167,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2366 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2366" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:26 GMT + - Fri, 07 Nov 2025 14:45:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - ab63a01e-1a4a-4b15-bcb2-1bc7df7da9a5 + - 1ba84812-e713-46fd-8732-66d63fb51780 status: 200 OK code: 200 - duration: 129.954374ms -- id: 47 + duration: 128.514094ms +- id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -1602,29 +2199,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2412 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2412" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - e4c12f71-cb9c-4ef3-bca9-13df2e7c21c4 + - fa1fc475-5219-4c7e-a0a7-3853ae8ab597 status: 200 OK code: 200 - duration: 147.648904ms -- id: 48 + duration: 135.334611ms +- id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -1634,29 +2231,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/389c0aff-e093-44cd-a37d-abf459555b41 method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 519 - body: "{\"volume\": {\"id\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" + content_length: 500 + body: "{\"volume\": {\"id\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}" headers: Content-Length: - - "519" + - "500" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - f83b7a4d-035f-4479-b85c-2e9b70d2ead1 + - b95155f8-a62b-446c-a400-23f76167c329 status: 200 OK code: 200 - duration: 96.176395ms -- id: 49 + duration: 105.431444ms +- id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -1666,7 +2263,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/user_data method: GET response: proto: HTTP/2.0 @@ -1680,15 +2277,15 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 5b1a5db9-0be7-4bb2-ae8f-e35d6a31e33f + - 404a7113-50db-4d5b-be57-230eca92de18 status: 200 OK code: 200 - duration: 98.564424ms -- id: 50 + duration: 118.555896ms +- id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -1698,7 +2295,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/private_nics method: GET response: proto: HTTP/2.0 @@ -1712,19 +2309,19 @@ interactions: Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - ed59fbc9-3e26-448d-b504-630b32b2105f + - db6c7748-d554-4c28-8be1-4f1b44aa704e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.68526ms -- id: 51 + duration: 104.753306ms +- id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -1734,29 +2331,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2366 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2366" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - be0dc833-bf61-4287-922c-f835dfda3f27 + - 708c3ec0-db6a-4ca8-b9ce-d4292425eb2f status: 200 OK code: 200 - duration: 130.748032ms -- id: 52 + duration: 144.564034ms +- id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -1766,29 +2363,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2412 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:22.129488+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"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, \"admin_password_encryption_ssh_key_id\": null}}" + content_length: 2360 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:09.097176+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2412" + - "2360" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:27 GMT + - Fri, 07 Nov 2025 14:45:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - a5086c9e-219d-4a03-8721-dc3e55335c8f + - 987453b6-edb6-4470-b23e-5fc3b0d7d6ad status: 200 OK code: 200 - duration: 124.716058ms -- id: 53 + duration: 140.170358ms +- id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -1801,31 +2398,31 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/action method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 content_length: 353 - body: "{\"task\": {\"id\": \"b4183103-52a3-452b-b295-9ea432e87c0a\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3/action\", \"href_result\": \"/servers/54189155-96c0-4ba7-938d-68a728e8edd3\", \"started_at\": \"2025-10-30T15:42:28.104816+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" + body: "{\"task\": {\"id\": \"16228bf4-d8a1-4ac3-8a6f-e6de3a62555e\", \"description\": \"server_terminate\", \"status\": \"pending\", \"href_from\": \"/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a/action\", \"href_result\": \"/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"started_at\": \"2025-11-07T14:45:12.042783+00:00\", \"terminated_at\": null, \"progress\": 0, \"zone\": \"fr-par-1\"}}" headers: Content-Length: - "353" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:28 GMT + - Fri, 07 Nov 2025 14:45:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b4183103-52a3-452b-b295-9ea432e87c0a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16228bf4-d8a1-4ac3-8a6f-e6de3a62555e Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - aa363019-7cdd-40c3-b129-748a572471dd + - b7344508-6435-4921-ac2b-4c7ce60df8da status: 202 Accepted code: 202 - duration: 342.922902ms -- id: 54 + duration: 361.95194ms +- id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -1835,29 +2432,93 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2329 - body: "{\"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-sweet-swartz\", \"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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"export_uri\": null, \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"54189155-96c0-4ba7-938d-68a728e8edd3\", \"name\": \"tf-srv-sweet-swartz\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:09.726281+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d0:6c:c5\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T15:42:09.726281+00:00\", \"modification_date\": \"2025-10-30T15:42:27.834557+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"42\", \"hypervisor_id\": \"202\", \"node_id\": \"43\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + content_length: 2323 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:11.751971+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" headers: Content-Length: - - "2329" + - "2323" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:28 GMT + - Fri, 07 Nov 2025 14:45:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - bdb8f58f-4358-4235-a9dc-60216d009924 + - 55de7642-441b-48ca-9e83-e3579a35706b status: 200 OK code: 200 - duration: 129.27565ms -- id: 55 + duration: 528.278432ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2323 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:11.751971+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2323" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:45:17 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - afce8cb3-70c7-4182-beb8-f41f8b8c901f + status: 200 OK + code: 200 + duration: 127.472091ms +- 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 2323 + body: "{\"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\", \"arch\": \"x86_64\", \"commercial_type\": \"DEV1-S\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"tf-srv-zealous-knuth\", \"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\": \"389c0aff-e093-44cd-a37d-abf459555b41\", \"name\": \"Ubuntu 20.04 Focal Fossa\", \"volume_type\": \"l_ssd\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"server\": {\"id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\", \"name\": \"tf-srv-zealous-knuth\"}, \"size\": 20000000000, \"state\": \"available\", \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:44:58.565783+00:00\", \"tags\": [], \"zone\": \"fr-par-1\"}}, \"tags\": [\"terraform-test\", \"scaleway_instance_server\", \"root_volume_from_image\"], \"state\": \"stopping\", \"protected\": false, \"state_detail\": \"terminating\", \"public_ip\": null, \"public_ips\": [], \"mac_address\": \"de:00:00:d1:fe:5b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-11-07T14:44:58.565783+00:00\", \"modification_date\": \"2025-11-07T14:45:11.751971+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"5881315f-2400-43a0-ac75-08adf6cb8c12\", \"name\": \"Default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"48\", \"hypervisor_id\": \"201\", \"node_id\": \"25\"}, \"maintenances\": [], \"allowed_actions\": [\"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" + headers: + Content-Length: + - "2323" + Content-Type: + - application/json + Date: + - Fri, 07 Nov 2025 14:45:22 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge03) + X-Request-Id: + - 64f57e3d-38db-4eae-90e1-274b5573cc9a + status: 200 OK + code: 200 + duration: 154.558739ms +- id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -1867,29 +2528,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a 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\": \"54189155-96c0-4ba7-938d-68a728e8edd3\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:33 GMT + - Fri, 07 Nov 2025 14:45:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 23e3b9b9-f98a-48b0-8531-066f42328fb2 + - d8ba9c6a-742d-4869-bdf8-e506ecab177d status: 404 Not Found code: 404 - duration: 49.919027ms -- id: 56 + duration: 65.096084ms +- id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -1899,29 +2560,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/389c0aff-e093-44cd-a37d-abf459555b41 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\": \"29883276-331f-4364-8fa3-7f6f43c276dc\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_volume\", \"resource_id\": \"389c0aff-e093-44cd-a37d-abf459555b41\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:33 GMT + - Fri, 07 Nov 2025 14:45:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 6585edc6-fdcd-4373-ae8c-a5903cb6b599 + - acc76ec1-7bb1-4c86-b33d-924115569f7b status: 404 Not Found code: 404 - duration: 29.27288ms -- id: 57 + duration: 31.609374ms +- id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -1931,29 +2592,29 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29883276-331f-4364-8fa3-7f6f43c276dc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/389c0aff-e093-44cd-a37d-abf459555b41 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\":\"29883276-331f-4364-8fa3-7f6f43c276dc\",\"type\":\"not_found\"}" + body: "{\"message\":\"resource is not found\",\"resource\":\"volume\",\"resource_id\":\"389c0aff-e093-44cd-a37d-abf459555b41\",\"type\":\"not_found\"}" headers: Content-Length: - "127" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:33 GMT + - Fri, 07 Nov 2025 14:45:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - 55fac387-ee46-403b-a497-6a77ada6d640 + - 3074558e-980b-4fd8-9bb4-e97aa90bd847 status: 404 Not Found code: 404 - duration: 19.59191ms -- id: 58 + duration: 22.076539ms +- id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -1963,25 +2624,25 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/54189155-96c0-4ba7-938d-68a728e8edd3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/14e90f0d-8fe7-4a27-bc3b-a8de43466c8a 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\": \"54189155-96c0-4ba7-938d-68a728e8edd3\"}" + body: "{\"type\": \"not_found\", \"message\": \"resource is not found\", \"resource\": \"instance_server\", \"resource_id\": \"14e90f0d-8fe7-4a27-bc3b-a8de43466c8a\"}" headers: Content-Length: - "143" Content-Type: - application/json Date: - - Thu, 30 Oct 2025 15:42:33 GMT + - Fri, 07 Nov 2025 14:45:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-1;edge03) X-Request-Id: - - e8b29226-95ce-4f8c-8c47-529eaf423b33 + - b189efab-e221-4296-82b2-b727084c6059 status: 404 Not Found code: 404 - duration: 49.644171ms + duration: 45.598491ms diff --git a/internal/services/instance/types.go b/internal/services/instance/types.go index 445b27c26..e5c05c566 100644 --- a/internal/services/instance/types.go +++ b/internal/services/instance/types.go @@ -1,12 +1,15 @@ package instance import ( + "fmt" "strconv" "github.com/scaleway/scaleway-sdk-go/api/instance/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance/instancehelpers" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) func (ph *privateNICsHandler) flatPrivateNICs() error { @@ -136,3 +139,32 @@ func flattenServerIPIDs(ips []*instance.ServerIP) []any { return ipIDs } + +func flattenServerVolume(api *instancehelpers.BlockAndInstanceAPI, serverVolume *instance.VolumeServer, zone scw.Zone) (map[string]any, error) { + volumeFlat := make(map[string]any, 1) + + vol, err := api.GetUnknownVolume(&instancehelpers.GetUnknownVolumeRequest{ + VolumeID: serverVolume.ID, + Zone: zone, + }) + if err != nil { + return nil, fmt.Errorf("failed to read instance volume %s: %w", serverVolume.ID, err) + } + + volumeFlat["volume_id"] = zonal.NewID(zone, vol.ID).String() + if vol.Size != nil { + volumeFlat["size_in_gb"] = int(uint64(*vol.Size) / gb) + } else if serverVolume.Size != nil { + volumeFlat["size_in_gb"] = int(uint64(*serverVolume.Size) / gb) + } + + if vol.IsBlockVolume() { + volumeFlat["sbs_iops"] = types.FlattenUint32Ptr(vol.Iops) + } + + volumeFlat["name"] = vol.Name + volumeFlat["volume_type"] = serverVolume.VolumeType + volumeFlat["boot"] = serverVolume.Boot + + return volumeFlat, nil +} diff --git a/templates/resources/instance_server.md.tmpl b/templates/resources/instance_server.md.tmpl index e374b777d..880b35832 100644 --- a/templates/resources/instance_server.md.tmpl +++ b/templates/resources/instance_server.md.tmpl @@ -237,6 +237,7 @@ To retrieve more information by label please use: ```scw marketplace image get l ~> **Important:** When updating `placement_group_id` the `state` must be set to `stopped`, otherwise it will fail. - `root_volume` - (Optional) Root [volume](https://www.scaleway.com/en/developers/api/instance/#path-volume-types-list-volume-types) attached to the server on creation. + - `name` - (Optional) Name of the root volume. - `volume_id` - (Optional) The volume ID of the root volume of the server, allows you to create server with an existing volume. If empty, will be computed to a created volume ID. - `size_in_gb` - (Required) Size of the root volume in gigabytes. To find the right size use [this endpoint](https://www.scaleway.com/en/developers/api/instance/#path-instances-list-all-instances) and