diff --git a/docs/resources/instance_server.md b/docs/resources/instance_server.md index e50b0b16fe..8a09807e5e 100644 --- a/docs/resources/instance_server.md +++ b/docs/resources/instance_server.md @@ -295,8 +295,13 @@ In addition to all arguments above, the following attributes are exported: - `private_ip` - The Scaleway internal IP address of the server (Deprecated use [ipam_ip datasource](../data-sources/ipam_ip.md#instance-private-network-ip) instead). - `public_ip` - The public IP address of the server (Deprecated use `public_ips` instead). - `public_ips` - The list of public IPs of the server. - - `id` - The ID of the IP - - `address` - The address of the IP + - `id` - The ID of the IP. + - `address` - The address of the IP. + - `gateway` - The IP of the Gateway associated with the IP. + - `netmask` - The CIDR netmask of the IP. + - `family` - The IP address' family. + - `dynamic` - Whether the IP is dynamic. + - `provisioning_mode` - The provisioning mode of the IP - `ipv6_address` - The default ipv6 address routed to the server. ( Only set when enable_ipv6 is set to true ) Deprecated: Please use a scaleway_instance_ip with a `routed_ipv6` type. - `ipv6_gateway` - The ipv6 gateway address. ( Only set when enable_ipv6 is set to true ) diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 1edc883439..0bb983bb8a 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -351,6 +351,31 @@ func ResourceServer() *schema.Resource { Computed: true, Description: "IP Address", }, + "gateway": { + Type: schema.TypeString, + Computed: true, + Description: "Gateway's IP address", + }, + "netmask": { + Type: schema.TypeString, + Computed: true, + Description: "CIDR netmask", + }, + "family": { + Type: schema.TypeString, + Computed: true, + Description: "IP address family (inet or inet6)", + }, + "dynamic": { + Type: schema.TypeBool, + Computed: true, + Description: "Whether the IP is dynamic", + }, + "provisioning_mode": { + Type: schema.TypeString, + Computed: true, + Description: "Provisioning mode of the IP address", + }, }, }, }, diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 08e6f2f6b2..7b3edb6e37 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -1512,6 +1512,12 @@ func TestAccServer_IPs(t *testing.T) { arePrivateNICsPresent(tt, "scaleway_instance_server.main"), resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.#", "1"), resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "public_ips.0.id", "scaleway_instance_ip.ip1", "id"), + resource.TestCheckResourceAttrSet("scaleway_instance_server.main", "public_ips.0.address"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.0.gateway", "62.210.0.1"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.0.netmask", "32"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.0.family", "inet"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.0.dynamic", "false"), + resource.TestCheckResourceAttr("scaleway_instance_server.main", "public_ips.0.provisioning_mode", "dhcp"), ), }, { diff --git a/internal/services/instance/testdata/server-ips.cassette.yaml b/internal/services/instance/testdata/server-ips.cassette.yaml index 991370661a..6844ab0ea2 100644 --- a/internal/services/instance/testdata/server-ips.cassette.yaml +++ b/internal/services/instance/testdata/server-ips.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' + body: '{"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"routed_ipv4"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 20 Aug 2025 15:39:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c90addce-7e6c-4220-ba19-978ff8b79aea + - cd578ba3-5393-4f83-a95e-1f924f924164 status: 201 Created code: 201 - duration: 663.879705ms + duration: 443.742158ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 20 Aug 2025 15:39:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec88a12d-ccad-457b-b499-c49f9e0d1e4d + - 3501c8ad-cc85-417c-86bc-b7270e1154f5 status: 200 OK code: 200 - duration: 145.19893ms + duration: 87.23098ms - id: 2 request: proto: HTTP/1.1 @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 20 Aug 2025 15:39:45 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37c56e30-a9b4-487d-950f-28a91749de77 + - 0b74d9d9-d526-46ba-9a11-95531baa3b55 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 93.587667ms + duration: 49.24457ms - id: 3 request: proto: HTTP/1.1 @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 20 Aug 2025 15:39:45 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2dc3353-b4e1-4a14-a716-e7e2237af63f + - 55ddc7ac-e91a-44f0-8bb7-6cad0a03cdf8 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 105.250429ms + duration: 40.895131ms - id: 4 request: proto: HTTP/1.1 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1185 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 20 Aug 2025 15:39:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f55ae225-7967-4153-8935-78281f45bbc2 + - be943772-26fa-499e-939c-667e8e858f95 status: 200 OK code: 200 - duration: 100.604566ms + duration: 99.840188ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"public_ips":["53257448-59d7-43a4-b9fc-8b85757208b4"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"public_ips":["4edebbd5-3cf5-4456-a7bc-5740fd941af6"],"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 20 Aug 2025 15:39:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1197774-639c-4467-922c-146282145f7f + - bb23440b-21a9-458d-94d7-5497f7dcbec3 status: 201 Created code: 201 - duration: 1.189028931s + duration: 963.656882ms - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 20 Aug 2025 15:39:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a52f496a-b91c-4e4d-8170-105f56b3f5f2 + - 565bad46-ebd6-4278-8966-6bad94d9abaa status: 200 OK code: 200 - duration: 301.248198ms + duration: 152.725575ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f7b103-d30f-4e39-a1e5-626a6d0e87d5 + - 72161574-04df-49ac-a626-e93624f3d643 status: 200 OK code: 200 - duration: 204.14568ms + duration: 168.179734ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8331a2d5-bb3b-42ac-920e-37e1c2f22905 + - bcd396e8-b72d-4996-b7ef-90e4a69c9f79 status: 200 OK code: 200 - duration: 212.494317ms + duration: 122.065621ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73005fdd-9961-419a-8d0f-8cd156873488 + - cbde0201-d49c-4359-8ce3-241b8e45ffb9 status: 404 Not Found code: 404 - duration: 90.063467ms + duration: 32.600777ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47cd20a-b56a-47dd-a553-69d088697858 + - b0396b88-485f-4bda-964f-482e7df637d3 status: 200 OK code: 200 - duration: 123.528548ms + duration: 47.875399ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c6d8cd-1a78-4c67-9711-3d4ef983d642 + - c28e3db6-197d-454f-8644-d6753deb634c status: 200 OK code: 200 - duration: 92.53381ms + duration: 74.1834ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 955453b4-41ba-40ab-940f-37e0094230ac + - 513ec39f-e668-4538-ab05-49be7c119a29 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 87.473009ms + duration: 56.487521ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 550b96a0-6708-4b88-b959-2d7fc47d84c8 + - 9537b9b8-7bbf-4760-ae97-87228ac2a979 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 178.730926ms + duration: 60.691835ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a8f94db-85b3-494c-8d2a-ada795280f79 + - 1cd0e41a-72e8-4aa5-bbc2-9bc2af248d43 status: 200 OK code: 200 - duration: 101.020236ms + duration: 110.15134ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de3914b8-9eeb-407e-a3ee-0868a699c4b5 + - d533bd70-223c-4067-bf8c-db2ef7b6cce8 status: 200 OK code: 200 - duration: 213.64253ms + duration: 138.578609ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 20 Aug 2025 15:39:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a030d5b1-f268-4abf-974b-83671983ceed + - 979b7cf8-0eef-4a83-95af-45696d2a56eb status: 404 Not Found code: 404 - duration: 43.076055ms + duration: 30.123936ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5afb493-d265-40ed-90a0-6fd46a818bdf + - db2f2ba2-0a04-43d9-8868-7a9a77a13bfb status: 200 OK code: 200 - duration: 83.484849ms + duration: 45.988006ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71c1775a-0ab8-4c51-a527-5ff149347eb0 + - acc251f0-e3cf-4353-93ad-38c64e6ad742 status: 200 OK code: 200 - duration: 145.523557ms + duration: 52.149866ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6b0ee0d-b5f7-44d2-becc-78419b37f5c7 + - 3230fe00-5413-48c4-a015-faa2f434ee6d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 131.286848ms + duration: 61.645867ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe618b53-fca3-44da-aa44-a2de27d85920 + - 51ddb7c9-0ae6-48b0-9da1-758a7e0d87c9 status: 200 OK code: 200 - duration: 134.244795ms + duration: 90.870735ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e641bf03-14c3-411d-af3c-cb5d76ec8894 + - bdaae8dd-bd97-404c-a3c1-cae0dfdea424 status: 200 OK code: 200 - duration: 272.052593ms + duration: 115.412629ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 065d94e0-0095-42f6-90a8-4c2e23cbdac7 + - 0434aaac-9aff-4b01-af66-5370b55df05d status: 404 Not Found code: 404 - duration: 84.144637ms + duration: 31.881316ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -1180,20 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b19efc-ed35-4d14-a458-4bc386fba2fe + - 0d2580a4-ba64-4147-9401-97c28222216a status: 200 OK code: 200 - duration: 70.27759ms + duration: 37.111597ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb2eb6b4-d355-44c1-8e37-acfff4f77f10 + - 6a750b60-0792-4544-b644-91ae977dbef8 status: 200 OK code: 200 - duration: 168.019087ms + duration: 63.623862ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 20 Aug 2025 15:39:48 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa6670e-7e60-47c5-a273-977df4941ea8 + - 1e06e8b9-6167-4994-bd3f-f54306a12d5d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 130.450319ms + duration: 64.037879ms - id: 26 request: proto: HTTP/1.1 @@ -1318,7 +1318,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' + body: '{"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"routed_ipv4"}' form: {} headers: Content-Type: @@ -1335,7 +1335,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -1344,11 +1344,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 20 Aug 2025 15:39:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72346503-776e-47bb-b1cc-e7f4f8fb7dde + - fd9b3157-19d3-40f9-b2c0-7daa495d3ee9 status: 201 Created code: 201 - duration: 673.149787ms + duration: 364.713451ms - id: 27 request: proto: HTTP/1.1 @@ -1376,7 +1376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: GET response: proto: HTTP/2.0 @@ -1386,7 +1386,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -1395,9 +1395,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 20 Aug 2025 15:39:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3983bdb2-64d3-47f9-9be2-b9c5a1f34cbc + - 76bd9b7d-15cf-46a6-b79e-89e30d415bc4 status: 200 OK code: 200 - duration: 139.543813ms + duration: 84.214386ms - id: 28 request: proto: HTTP/1.1 @@ -1425,7 +1425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -1433,20 +1433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 20 Aug 2025 15:39:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff4a79c7-e1df-4686-b5aa-218930414094 + - 7fe0e177-8e39-44a6-8fca-da8d3848fe19 status: 200 OK code: 200 - duration: 253.855966ms + duration: 120.078962ms - id: 29 request: proto: HTTP/1.1 @@ -1474,7 +1474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -1482,20 +1482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2262 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 20 Aug 2025 15:39:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7afa27a1-e399-4fdc-9d81-5a7bb83f0204 + - 5ceff530-de88-42d5-86ec-7115f5436069 status: 200 OK code: 200 - duration: 267.72684ms + duration: 138.944557ms - id: 30 request: proto: HTTP/1.1 @@ -1518,14 +1518,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"f1a47b45-b8c6-4b1b-9da0-b48facbba203"}' + body: '{"server":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: PATCH response: proto: HTTP/2.0 @@ -1535,7 +1535,7 @@ interactions: trailer: {} content_length: 446 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "446" @@ -1544,9 +1544,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1554,10 +1554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0ac2014-d0b4-4360-b0c9-4e396b705571 + - 5cbde141-29bb-49a5-a4d9-892bcbca6edc status: 200 OK code: 200 - duration: 459.737179ms + duration: 449.74477ms - id: 31 request: proto: HTTP/1.1 @@ -1574,7 +1574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -1582,20 +1582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,10 +1603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9edfeaea-a6ef-4c1e-9fea-3364b7c9bd06 + - d098c0cf-fa75-471e-9f93-e160f8cc8e79 status: 200 OK code: 200 - duration: 261.5257ms + duration: 136.032569ms - id: 32 request: proto: HTTP/1.1 @@ -1623,7 +1623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -1631,20 +1631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1652,10 +1652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f979349-7514-4870-8402-689930762440 + - 897d3aea-b937-427b-b48e-fbd5fd90b396 status: 200 OK code: 200 - duration: 273.076372ms + duration: 137.754783ms - id: 33 request: proto: HTTP/1.1 @@ -1672,7 +1672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -1682,7 +1682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -1691,9 +1691,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,10 +1701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c0fe736-7b66-4701-91fa-59fd5e4b8fee + - 34b6eb03-9f4a-4082-ad51-3aae495a643f status: 404 Not Found code: 404 - duration: 287.122234ms + duration: 27.907364ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -1729,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3cad7c-961c-4f8b-a5a1-488dda227ede + - 695ccf40-821a-4bce-bf33-090b6fdd044d status: 200 OK code: 200 - duration: 75.000397ms + duration: 36.48989ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -1789,9 +1789,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,10 +1799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59c9aa4b-da44-4c3e-b04c-3898aeef4cca + - fa7697bf-b484-47b6-92b7-a257096380e5 status: 200 OK code: 200 - duration: 149.215281ms + duration: 67.524897ms - id: 36 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -1838,11 +1838,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,12 +1850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69dc2967-b24f-4ba0-a65c-6e27079518c3 + - 2761c541-d5bd-465d-b948-27b83322645f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 81.11752ms + duration: 54.956496ms - id: 37 request: proto: HTTP/1.1 @@ -1872,7 +1872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -1891,11 +1891,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 20 Aug 2025 15:39:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1903,12 +1903,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eed5357-5f8d-4f84-800f-bf2e48b4cf93 + - f7f79543-de02-4340-b7b4-183dcaf05c74 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 122.822313ms + duration: 62.498368ms - id: 38 request: proto: HTTP/1.1 @@ -1925,7 +1925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -1933,20 +1933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1954,10 +1954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac9f55aa-e3d0-4461-8d57-b508384e73c4 + - 559595cf-254d-4c0d-ac07-db07f6ca96e3 status: 200 OK code: 200 - duration: 153.662391ms + duration: 84.453836ms - id: 39 request: proto: HTTP/1.1 @@ -1974,7 +1974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: GET response: proto: HTTP/2.0 @@ -1984,7 +1984,7 @@ interactions: trailer: {} content_length: 446 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "446" @@ -1993,9 +1993,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2003,10 +2003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4725e9f1-1c38-43cf-a296-7382502068da + - 8e808328-98df-4623-b4cb-807aec3a0e89 status: 200 OK code: 200 - duration: 174.071587ms + duration: 115.741457ms - id: 40 request: proto: HTTP/1.1 @@ -2023,7 +2023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2031,20 +2031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2052,10 +2052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa766196-9a82-4381-a2e6-20db484682fe + - 54f98eab-74c6-4e35-a942-46afa990e2f3 status: 200 OK code: 200 - duration: 202.327578ms + duration: 115.986136ms - id: 41 request: proto: HTTP/1.1 @@ -2072,7 +2072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2082,7 +2082,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -2091,9 +2091,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,10 +2101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a1aba28-f164-410a-bbf2-e6aa5ff9417b + - 26242c1b-5e62-49b4-8b68-61ccba63c6ee status: 404 Not Found code: 404 - duration: 79.414686ms + duration: 31.230153ms - id: 42 request: proto: HTTP/1.1 @@ -2121,7 +2121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2129,20 +2129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2150,10 +2150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b18ee4b-aa3c-4bd3-bbe2-4cb87c79646a + - 758781ce-e7b9-4943-9c4a-256df24c0e13 status: 200 OK code: 200 - duration: 104.51504ms + duration: 42.148706ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +2170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -2189,9 +2189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8040f763-15fd-4cb2-a0f1-d9d998f58ef5 + - 15003153-d813-4efd-ad84-284fa1d5637a status: 200 OK code: 200 - duration: 117.56883ms + duration: 62.300246ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +2219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -2238,11 +2238,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2250,12 +2250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ba86260-e393-4ac7-9f45-3469d8a7863a + - 99e62f72-afe6-4fc2-8e0c-847c41f3a902 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.653858ms + duration: 65.407812ms - id: 45 request: proto: HTTP/1.1 @@ -2272,7 +2272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: GET response: proto: HTTP/2.0 @@ -2280,20 +2280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 446 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2301,10 +2301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 530a9761-0685-404e-bd75-42b03d847277 + - 5d957092-8734-4e16-9716-6074a76da641 status: 200 OK code: 200 - duration: 95.567399ms + duration: 107.463223ms - id: 46 request: proto: HTTP/1.1 @@ -2321,7 +2321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -2329,20 +2329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2350,10 +2350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0586fc91-73c8-443d-8a23-c6d9d2cd4701 + - 37a3f1fa-7766-4e75-a320-59492f855cb1 status: 200 OK code: 200 - duration: 126.223001ms + duration: 114.939712ms - id: 47 request: proto: HTTP/1.1 @@ -2370,7 +2370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2378,20 +2378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,10 +2399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc8413bb-406e-4810-aa4f-60e2d0b355fb + - bdcc0aef-0171-4aa3-9118-30e0663e4d28 status: 200 OK code: 200 - duration: 198.687281ms + duration: 122.008946ms - id: 48 request: proto: HTTP/1.1 @@ -2419,7 +2419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2429,7 +2429,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -2438,9 +2438,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,10 +2448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f6546ad-b8a5-45c2-8f24-824343b1d648 + - 6f73f034-70ea-415c-b37c-00c64b333562 status: 404 Not Found code: 404 - duration: 85.51162ms + duration: 33.599102ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2476,20 +2476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,10 +2497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdd5e7fa-00a1-4fba-9b3d-ce418f1ce09f + - 7fee4746-1089-4da4-b1d7-204e2e93bae0 status: 200 OK code: 200 - duration: 81.207317ms + duration: 63.600568ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -2536,9 +2536,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 20 Aug 2025 15:39:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,10 +2546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f26d981-4ebb-4308-8323-16dfcad2aa7a + - c6bdc766-bf04-4a4e-aa15-0b83d90e3604 status: 200 OK code: 200 - duration: 151.817782ms + duration: 59.744147ms - id: 51 request: proto: HTTP/1.1 @@ -2566,7 +2566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -2585,11 +2585,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 20 Aug 2025 15:39:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,12 +2597,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85cf7bd2-bcce-455a-987d-da05af9ba070 + - 0bd769e9-b992-49e7-86b4-ddb723370811 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.992564ms + duration: 54.994387ms - id: 52 request: proto: HTTP/1.1 @@ -2619,7 +2619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2627,20 +2627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 20 Aug 2025 15:39:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,10 +2648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8120d3f-bb9b-4b4a-aaa0-5018b1a23508 + - e5b0e04d-a99d-4438-a75f-c13c95be4e3c status: 200 OK code: 200 - duration: 214.349264ms + duration: 137.41784ms - id: 53 request: proto: HTTP/1.1 @@ -2668,7 +2668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2676,20 +2676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2534 + content_length: 2530 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2534" + - "2530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 20 Aug 2025 15:39:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2697,10 +2697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b001f30-f52a-4066-b1c5-94a42244d838 + - f9299293-96b0-4b45-a89f-96b700d971d3 status: 200 OK code: 200 - duration: 420.900604ms + duration: 120.053154ms - id: 54 request: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: PATCH response: proto: HTTP/2.0 @@ -2727,20 +2727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 20 Aug 2025 15:39:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2748,10 +2748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93e3f91a-c839-498a-a7ae-35d2de3636c9 + - c787697c-3c88-4c33-a90a-8bfe3c02e959 status: 200 OK code: 200 - duration: 624.329047ms + duration: 368.701579ms - id: 55 request: proto: HTTP/1.1 @@ -2768,7 +2768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2778,7 +2778,7 @@ interactions: trailer: {} content_length: 2260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2260" @@ -2787,9 +2787,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,10 +2797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6940c361-04b8-4f65-8b94-e26895222972 + - e560d2ed-8b04-42b4-8be9-bde4828953b8 status: 200 OK code: 200 - duration: 197.405227ms + duration: 113.120335ms - id: 56 request: proto: HTTP/1.1 @@ -2817,7 +2817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -2827,7 +2827,7 @@ interactions: trailer: {} content_length: 2260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2260" @@ -2836,9 +2836,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,10 +2846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0491c6b4-3168-4b76-885d-46184312d568 + - 81d3d8c8-c687-4759-b264-1a8d55629852 status: 200 OK code: 200 - duration: 240.558678ms + duration: 124.820045ms - id: 57 request: proto: HTTP/1.1 @@ -2866,7 +2866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2876,7 +2876,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -2885,9 +2885,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2895,10 +2895,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7b0edd2-da53-4f4e-8a9e-c32af77cc752 + - ff3f1f9f-37f5-433d-b8cc-d8f1482ed740 status: 404 Not Found code: 404 - duration: 38.001178ms + duration: 26.359026ms - id: 58 request: proto: HTTP/1.1 @@ -2915,7 +2915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -2923,20 +2923,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2944,10 +2944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3823f1bd-0427-4af1-9240-95e503cf1cb0 + - 902e135e-74b9-43ad-ae9f-eeebbe23ef5f status: 200 OK code: 200 - duration: 133.633919ms + duration: 41.736602ms - id: 59 request: proto: HTTP/1.1 @@ -2964,7 +2964,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -2983,9 +2983,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2993,10 +2993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4eef1e1-b92c-4ab8-ab3d-2cefb35c7c82 + - 69de20a0-6039-4093-854f-15715bf32765 status: 200 OK code: 200 - duration: 175.828942ms + duration: 52.499061ms - id: 60 request: proto: HTTP/1.1 @@ -3013,7 +3013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -3032,11 +3032,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3044,12 +3044,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d5406fc-0eff-4242-bc92-5568d78bdd83 + - 299542dd-5141-462a-a9ef-2153de73b30d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.722196ms + duration: 52.621642ms - id: 61 request: proto: HTTP/1.1 @@ -3066,7 +3066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -3085,11 +3085,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3097,12 +3097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e35b7180-07c7-4e1b-9402-c99aacde4fb4 + - 87108cb6-7e7b-41a9-911b-894ec63de7dc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.141006ms + duration: 53.426383ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +3119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: GET response: proto: HTTP/2.0 @@ -3127,20 +3127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"61510a2e-35e2-4a6c-bfe2-7b48881c7a63","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,10 +3148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 084822d0-ede9-4b23-9304-8e6b4fae9e42 + - 5a3109dd-8b7d-46ad-87c2-6a29f9067f39 status: 200 OK code: 200 - duration: 140.889636ms + duration: 75.790568ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +3168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: GET response: proto: HTTP/2.0 @@ -3178,7 +3178,7 @@ interactions: trailer: {} content_length: 446 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "446" @@ -3187,9 +3187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3197,10 +3197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80119cd1-e959-4bcc-8629-fdafd46c9ae9 + - 61556d91-6793-438a-8631-a8bf1c67b27e status: 200 OK code: 200 - duration: 181.438933ms + duration: 77.407774ms - id: 64 request: proto: HTTP/1.1 @@ -3217,7 +3217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -3227,7 +3227,7 @@ interactions: trailer: {} content_length: 2260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2260" @@ -3236,9 +3236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3246,10 +3246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4aec8ab-43e4-447e-a118-e835ef03e6d8 + - 61d8295e-06ac-4c6b-a488-3cc0188a6b8c status: 200 OK code: 200 - duration: 234.14057ms + duration: 125.835121ms - id: 65 request: proto: HTTP/1.1 @@ -3266,7 +3266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -3276,7 +3276,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -3285,9 +3285,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,10 +3295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 344b3b34-3ee8-404e-91f0-5fb78235b7ea + - 7950b25a-a940-4f06-b5ae-1f038cc93edb status: 404 Not Found code: 404 - duration: 45.737597ms + duration: 37.638697ms - id: 66 request: proto: HTTP/1.1 @@ -3315,7 +3315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -3323,20 +3323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:18.818961Z","id":"eb7570a3-9ef0-42aa-8dbb-c6bb65f3236b","product_resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:18.818961Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 20 Aug 2025 15:39:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,10 +3344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a0b5064-8cb2-46ed-90bf-bfbaa87f3cba + - 1bce7960-7c1a-4768-99a9-29d1641c3075 status: 200 OK code: 200 - duration: 118.457707ms + duration: 41.48514ms - id: 67 request: proto: HTTP/1.1 @@ -3364,7 +3364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data method: GET response: proto: HTTP/2.0 @@ -3383,9 +3383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3393,10 +3393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2da00a2f-13a7-4458-ad09-735c7035f164 + - b544c15e-2ed6-4c79-ac04-818bf7ab65f9 status: 200 OK code: 200 - duration: 103.238986ms + duration: 63.608142ms - id: 68 request: proto: HTTP/1.1 @@ -3413,7 +3413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics method: GET response: proto: HTTP/2.0 @@ -3432,11 +3432,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3444,12 +3444,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 476792e8-8b03-45aa-9d7a-8a39926ea71d + - 1d753ad8-8639-4d23-a2e7-1aae4c5aea2a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 83.59798ms + duration: 59.684735ms - id: 69 request: proto: HTTP/1.1 @@ -3466,7 +3466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -3476,7 +3476,7 @@ interactions: trailer: {} content_length: 2260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2260" @@ -3485,9 +3485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3495,10 +3495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99419f96-d170-42d2-915c-56e3b72f4a63 + - b2c15f14-7602-44c1-91c6-f4637e274174 status: 200 OK code: 200 - duration: 624.180707ms + duration: 113.212107ms - id: 70 request: proto: HTTP/1.1 @@ -3515,7 +3515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -3525,7 +3525,7 @@ interactions: trailer: {} content_length: 2260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:18.595496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:53","maintenances":[],"modification_date":"2025-06-10T15:30:18.595496+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"364905e4-3148-499e-bca5-da9eb1dd3e4a","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2938594b-3439-4c17-8b69-31517baba76a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2260" @@ -3534,9 +3534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3544,10 +3544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40bac359-76e9-4a5c-81c2-08fe6085f7b7 + - fdbd7c66-fefd-4416-a17e-75e576888519 status: 200 OK code: 200 - duration: 175.542204ms + duration: 134.059976ms - id: 71 request: proto: HTTP/1.1 @@ -3564,7 +3564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 method: DELETE response: proto: HTTP/2.0 @@ -3581,9 +3581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3591,10 +3591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18d3d0f2-483e-4b8e-bcde-7f7666452501 + - 50f14276-b056-4c22-8a7d-917965348e1c status: 204 No Content code: 204 - duration: 965.299856ms + duration: 254.200743ms - id: 72 request: proto: HTTP/1.1 @@ -3611,7 +3611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: DELETE response: proto: HTTP/2.0 @@ -3628,9 +3628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3638,10 +3638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9603888b-e5c5-4bd6-b7db-50b09adebb8e + - 5548d82a-4ed7-419a-bafc-5fb5fb059bb2 status: 204 No Content code: 204 - duration: 397.246621ms + duration: 354.125068ms - id: 73 request: proto: HTTP/1.1 @@ -3658,7 +3658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -3668,7 +3668,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","type":"not_found"}' headers: Content-Length: - "143" @@ -3677,9 +3677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3687,10 +3687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d232d94f-02b7-4d79-9cb4-1b9aa0c90cf7 + - 124c0b49-c63f-40be-8024-12bee381ee22 status: 404 Not Found code: 404 - duration: 73.950337ms + duration: 72.614124ms - id: 74 request: proto: HTTP/1.1 @@ -3707,7 +3707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -3717,7 +3717,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2938594b-3439-4c17-8b69-31517baba76a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' headers: Content-Length: - "143" @@ -3726,9 +3726,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3736,10 +3736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcc49a85-98b0-4d95-be9c-8fd69b66c3d4 + - dd4306f9-cfb2-4848-bae4-c865901f17b6 status: 404 Not Found code: 404 - duration: 42.585516ms + duration: 38.118678ms - id: 75 request: proto: HTTP/1.1 @@ -3756,7 +3756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: GET response: proto: HTTP/2.0 @@ -3764,20 +3764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 484 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:18.818961Z","id":"2938594b-3439-4c17-8b69-31517baba76a","last_detached_at":"2025-06-10T15:30:40.658081Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:40.658081Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":"2025-08-20T15:39:55.017738Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:55.017738Z","zone":"fr-par-1"}' headers: Content-Length: - - "498" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3785,10 +3785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a354753d-4d58-4992-b1cb-0a8df49812e2 + - 869fe7bf-cba4-4b64-8d28-fb02888d8a20 status: 200 OK code: 200 - duration: 135.702128ms + duration: 51.361276ms - id: 76 request: proto: HTTP/1.1 @@ -3805,7 +3805,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2938594b-3439-4c17-8b69-31517baba76a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 method: DELETE response: proto: HTTP/2.0 @@ -3822,9 +3822,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3832,10 +3832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67c337f1-5675-49e4-8a5f-48f5b898d5cc + - 82c3b4e8-9b7b-4cd1-829e-f2df2afb6392 status: 204 No Content code: 204 - duration: 231.923552ms + duration: 82.005739ms - id: 77 request: proto: HTTP/1.1 @@ -3852,7 +3852,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 method: DELETE response: proto: HTTP/2.0 @@ -3869,9 +3869,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,10 +3879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23506e2e-a61b-4be1-8e88-9e58a755ab67 + - c598aefb-53ba-4b5c-b02c-91de1ce6bb0e status: 204 No Content code: 204 - duration: 567.971712ms + duration: 356.563529ms - id: 78 request: proto: HTTP/1.1 @@ -3899,7 +3899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1a47b45-b8c6-4b1b-9da0-b48facbba203 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b method: GET response: proto: HTTP/2.0 @@ -3909,7 +3909,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1a47b45-b8c6-4b1b-9da0-b48facbba203","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","type":"not_found"}' headers: Content-Length: - "143" @@ -3918,9 +3918,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 20 Aug 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,7 +3928,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 335399bb-7d36-4016-98e0-1eca8541f14b + - e20d6554-4913-4329-b8a3-c91c6973399f status: 404 Not Found code: 404 - duration: 86.082901ms + duration: 87.028639ms diff --git a/internal/services/instance/types.go b/internal/services/instance/types.go index 7afb3f6d67..43b4101d91 100644 --- a/internal/services/instance/types.go +++ b/internal/services/instance/types.go @@ -93,8 +93,13 @@ func flattenServerPublicIPs(zone scw.Zone, ips []*instance.ServerIP) []any { for i, ip := range ips { flattenedIPs[i] = map[string]any{ - "id": zonal.NewIDString(zone, ip.ID), - "address": ip.Address.String(), + "id": zonal.NewIDString(zone, ip.ID), + "address": ip.Address.String(), + "gateway": ip.Gateway.String(), + "netmask": ip.Netmask, + "family": ip.Family.String(), + "dynamic": ip.Dynamic, + "provisioning_mode": ip.ProvisioningMode.String(), } }