diff --git a/internal/identity/identity.go b/internal/identity/identity.go index a45333ed0d..503d70c9da 100644 --- a/internal/identity/identity.go +++ b/internal/identity/identity.go @@ -20,6 +20,19 @@ func DefaultZonal() *schema.ResourceIdentity { }) } +// DefaultRegional should be used as the default identity schema for regional resources. +// For instance if you want an id with the form fr-par/11111111-1111-1111-1111-111111111111 +func DefaultRegional() *schema.ResourceIdentity { + return WrapSchemaMap(map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Description: "The id of the resource (UUID format)", + RequiredForImport: true, + }, + "region": DefaultRegionAttribute(), + }) +} + func WrapSchemaMap(m map[string]*schema.Schema) *schema.ResourceIdentity { return &schema.ResourceIdentity{ SchemaFunc: func() map[string]*schema.Schema { diff --git a/internal/services/k8s/acl.go b/internal/services/k8s/acl.go index 3d079bbc3c..3eef4ebaa4 100644 --- a/internal/services/k8s/acl.go +++ b/internal/services/k8s/acl.go @@ -12,6 +12,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/cdf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/identity" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" @@ -41,6 +42,7 @@ func ResourceACL() *schema.Resource { SchemaVersion: 0, SchemaFunc: aclSchema, CustomizeDiff: cdf.LocalityCheck("cluster_id"), + Identity: identity.DefaultRegional(), } } @@ -129,8 +131,10 @@ func ResourceACLCreate(ctx context.Context, d *schema.ResourceData, m any) diag. return diag.FromErr(err) } - regionalID := regional.NewID(region, clusterID).String() - d.SetId(regionalID) + err = identity.SetRegionalIdentity(d, region, clusterID) + if err != nil { + return diag.FromErr(err) + } return ResourceACLRead(ctx, d, m) } @@ -160,6 +164,11 @@ func ResourceACLRead(ctx context.Context, d *schema.ResourceData, m any) diag.Di return diag.FromErr(err) } + err = identity.SetRegionalIdentity(d, region, clusterID) + if err != nil { + return diag.FromErr(err) + } + _ = d.Set("cluster_id", regional.NewIDString(region, clusterID)) _ = d.Set("region", region) _ = d.Set("acl_rules", flattenACL(acls.Rules)) diff --git a/internal/services/k8s/cluster.go b/internal/services/k8s/cluster.go index 9666d9ac6e..68b42bac68 100644 --- a/internal/services/k8s/cluster.go +++ b/internal/services/k8s/cluster.go @@ -18,6 +18,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/identity" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" @@ -54,6 +55,7 @@ func ResourceCluster() *schema.Resource { }, SchemaVersion: 0, SchemaFunc: clusterSchema, + Identity: identity.DefaultRegional(), CustomizeDiff: customdiff.All( func(_ context.Context, diff *schema.ResourceDiff, _ any) error { autoUpgradeEnable, okAutoUpgradeEnable := diff.GetOkExists("auto_upgrade.0.enable") @@ -571,7 +573,10 @@ func ResourceK8SClusterCreate(ctx context.Context, d *schema.ResourceData, m any return append(diag.FromErr(err), diags...) } - d.SetId(regional.NewIDString(region, res.ID)) + err = identity.SetRegionalIdentity(d, res.Region, res.ID) + if err != nil { + return diag.FromErr(err) + } if strings.Contains(clusterType.(string), "multicloud") { // In case of multi-cloud, we do not have the guarantee that a pool will be created in Scaleway. @@ -608,7 +613,21 @@ func ResourceK8SClusterRead(ctx context.Context, d *schema.ResourceData, m any) return diag.FromErr(err) } - _ = d.Set("region", string(region)) + diagnostics := setClusterState(ctx, d, cluster, k8sAPI) + if diagnostics.HasError() { + return diagnostics + } + + err = identity.SetRegionalIdentity(d, cluster.Region, cluster.ID) + if err != nil { + return diag.FromErr(err) + } + + return nil +} + +func setClusterState(ctx context.Context, d *schema.ResourceData, cluster *k8s.Cluster, k8sAPI *k8s.API) diag.Diagnostics { + _ = d.Set("region", cluster.Region) _ = d.Set("name", cluster.Name) _ = d.Set("type", cluster.Type) _ = d.Set("organization_id", cluster.OrganizationID) @@ -628,6 +647,8 @@ func ResourceK8SClusterRead(ctx context.Context, d *schema.ResourceData, m any) // if autoupgrade is enabled, we only set the minor k8s version (x.y) version := cluster.Version + + var err error if cluster.AutoUpgrade != nil && cluster.AutoUpgrade.Enabled { version, err = GetMinorVersionFromFull(version) if err != nil { @@ -653,15 +674,17 @@ func ResourceK8SClusterRead(ctx context.Context, d *schema.ResourceData, m any) //// // Read kubeconfig //// - kubeconfig, err := flattenKubeconfig(ctx, k8sAPI, region, clusterID) + kubeconfig, err := flattenKubeconfig(ctx, k8sAPI, cluster.Region, cluster.ID) if err != nil { if httperrors.Is403(err) { - return diag.Diagnostics{diag.Diagnostic{ - Severity: diag.Warning, - Summary: "Cannot read kubeconfig: unauthorized", - Detail: "Got 403 while reading kubeconfig, please check your permissions", - AttributePath: cty.GetAttrPath("kubeconfig"), - }} + return diag.Diagnostics{ + diag.Diagnostic{ + Severity: diag.Warning, + Summary: "Cannot read kubeconfig: unauthorized", + Detail: "Got 403 while reading kubeconfig, please check your permissions", + AttributePath: cty.GetAttrPath("kubeconfig"), + }, + } } return diag.FromErr(err) diff --git a/internal/services/k8s/cluster_data_source.go b/internal/services/k8s/cluster_data_source.go index bd0284251b..acac243024 100644 --- a/internal/services/k8s/cluster_data_source.go +++ b/internal/services/k8s/cluster_data_source.go @@ -9,6 +9,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" ) @@ -75,5 +76,16 @@ func DataSourceK8SClusterRead(ctx context.Context, d *schema.ResourceData, m any d.SetId(regionalizedID) _ = d.Set("cluster_id", regionalizedID) - return ResourceK8SClusterRead(ctx, d, m) + cluster, err := waitCluster(ctx, k8sAPI, region, clusterID.(string), d.Timeout(schema.TimeoutRead)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + return setClusterState(ctx, d, cluster, k8sAPI) } diff --git a/internal/services/k8s/cluster_test.go b/internal/services/k8s/cluster_test.go index 30469d1270..77f9dd48d0 100644 --- a/internal/services/k8s/cluster_test.go +++ b/internal/services/k8s/cluster_test.go @@ -183,6 +183,12 @@ resource "scaleway_k8s_cluster" "minimal" { resource.TestCheckResourceAttr("scaleway_k8s_cluster.minimal", "service_dns_ip", k8s.NetworkingDefaultValues["service_dns_ip"]), ), }, + { + ResourceName: "scaleway_k8s_cluster.minimal", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -256,6 +262,12 @@ func TestAccCluster_Autoscaling(t *testing.T) { resource.TestCheckResourceAttr("scaleway_k8s_cluster.autoscaler", "tags.2", "autoscaler-config"), ), }, + { + ResourceName: "scaleway_k8s_cluster.autoscaler", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -320,6 +332,12 @@ func TestAccCluster_OIDC(t *testing.T) { resource.TestCheckResourceAttr("scaleway_k8s_cluster.oidc", "tags.2", "oidc-config"), ), }, + { + ResourceName: "scaleway_k8s_cluster.oidc", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -400,6 +418,12 @@ func TestAccCluster_AutoUpgrade(t *testing.T) { resource.TestCheckResourceAttr("scaleway_k8s_cluster.auto_upgrade", "auto_upgrade.0.maintenance_window_start_hour", "0"), ), }, + { + ResourceName: "scaleway_k8s_cluster.auto_upgrade", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -438,6 +462,12 @@ func TestAccCluster_PrivateNetwork(t *testing.T) { acctest.CheckResourceIDChanged("scaleway_k8s_cluster.private_network", &clusterID), ), }, + { + ResourceName: "scaleway_k8s_cluster.private_network", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -459,6 +489,12 @@ func TestAccCluster_Multicloud(t *testing.T) { resource.TestCheckResourceAttr("scaleway_k8s_cluster.multicloud", "version", latestK8SVersion), ), }, + { + ResourceName: "scaleway_k8s_cluster.multicloud", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } @@ -541,6 +577,12 @@ func TestAccCluster_TypeChange(t *testing.T) { acctest.CheckResourceIDChanged("scaleway_k8s_cluster.type-change", &clusterID), ), }, + { + ResourceName: "scaleway_k8s_cluster.type-change", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"delete_additional_resources"}, + }, }, }) } diff --git a/internal/services/k8s/pool.go b/internal/services/k8s/pool.go index c17e03bf4a..48ea4d254f 100644 --- a/internal/services/k8s/pool.go +++ b/internal/services/k8s/pool.go @@ -12,6 +12,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/identity" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" @@ -42,6 +43,7 @@ func ResourcePool() *schema.Resource { }, SchemaVersion: 0, SchemaFunc: poolSchema, + Identity: identity.DefaultRegional(), } } @@ -367,7 +369,10 @@ func ResourceK8SPoolCreate(ctx context.Context, d *schema.ResourceData, m any) d return diag.FromErr(err) } - d.SetId(regional.NewIDString(region, res.ID)) + err = identity.SetRegionalIdentity(d, res.Region, res.ID) + if err != nil { + return diag.FromErr(err) + } if d.Get("wait_for_pool_ready").(bool) { // wait for the pool to be ready if specified (including all its nodes) _, err = waitPoolReady(ctx, k8sAPI, region, res.ID, d.Timeout(schema.TimeoutCreate)) @@ -414,7 +419,18 @@ func ResourceK8SPoolRead(ctx context.Context, d *schema.ResourceData, m any) dia return diag.FromErr(err) } - _ = d.Set("cluster_id", regional.NewIDString(region, pool.ClusterID)) + diags := setPoolState(ctx, d, m, pool, k8sAPI, nodes) + + err = identity.SetRegionalIdentity(d, pool.Region, pool.ID) + if err != nil { + return diag.FromErr(err) + } + + return diags +} + +func setPoolState(ctx context.Context, d *schema.ResourceData, m any, pool *k8s.Pool, k8sAPI *k8s.API, nodes []map[string]any) diag.Diagnostics { + _ = d.Set("cluster_id", regional.NewIDString(pool.Region, pool.ClusterID)) _ = d.Set("name", pool.Name) _ = d.Set("node_type", pool.NodeType) _ = d.Set("autoscaling", pool.Autoscaling) @@ -440,7 +456,7 @@ func ResourceK8SPoolRead(ctx context.Context, d *schema.ResourceData, m any) dia _ = d.Set("updated_at", pool.UpdatedAt.Format(time.RFC3339)) _ = d.Set("status", pool.Status) _ = d.Set("kubelet_args", flattenKubeletArgs(pool.KubeletArgs)) - _ = d.Set("region", region) + _ = d.Set("region", pool.Region) _ = d.Set("zone", pool.Zone) _ = d.Set("upgrade_policy", poolUpgradePolicyFlatten(pool)) _ = d.Set("public_ip_disabled", pool.PublicIPDisabled) @@ -478,7 +494,7 @@ func ResourceK8SPoolRead(ctx context.Context, d *schema.ResourceData, m any) dia ProjectID: &projectID, } - privateIPs, err := ipam.GetResourcePrivateIPs(ctx, m, region, opts) + privateIPs, err := ipam.GetResourcePrivateIPs(ctx, m, pool.Region, opts) switch { case err == nil: diff --git a/internal/services/k8s/pool_data_source.go b/internal/services/k8s/pool_data_source.go index 88afd9d361..65d898fe0f 100644 --- a/internal/services/k8s/pool_data_source.go +++ b/internal/services/k8s/pool_data_source.go @@ -9,6 +9,7 @@ import ( "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" "github.com/scaleway/scaleway-sdk-go/scw" "github.com/scaleway/terraform-provider-scaleway/v2/internal/datasource" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" @@ -78,5 +79,26 @@ func DataSourceK8SPoolRead(ctx context.Context, d *schema.ResourceData, m any) d d.SetId(regionalizedID) _ = d.Set("pool_id", regionalizedID) - return ResourceK8SPoolRead(ctx, d, m) + req := &k8s.GetPoolRequest{ + Region: region, + PoolID: poolID.(string), + } + + pool, err := k8sAPI.GetPool(req, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + nodes, err := getNodes(ctx, k8sAPI, pool) + if err != nil { + return diag.FromErr(err) + } + + return setPoolState(ctx, d, m, pool, k8sAPI, nodes) } diff --git a/internal/services/k8s/pool_test.go b/internal/services/k8s/pool_test.go index 3aa338f297..3170aebdac 100644 --- a/internal/services/k8s/pool_test.go +++ b/internal/services/k8s/pool_test.go @@ -90,6 +90,12 @@ func TestAccPool_Basic(t *testing.T) { testAccCheckK8SPoolServersAreInPrivateNetwork(tt, "scaleway_k8s_cluster.minimal", "scaleway_k8s_pool.default", "scaleway_vpc_private_network.minimal"), ), }, + { + ResourceName: "scaleway_k8s_pool.default", + ImportState: true, + ImportStateVerify: true, + ImportStateVerifyIgnore: []string{"wait_for_pool_ready", "size"}, + }, }, }) } diff --git a/internal/services/k8s/testdata/cluster-auto-upgrade.cassette.yaml b/internal/services/k8s/testdata/cluster-auto-upgrade.cassette.yaml index 5abd13336e..de8790bc79 100644 --- a/internal/services/k8s/testdata/cluster-auto-upgrade.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-auto-upgrade.cassette.yaml @@ -1,3499 +1,3467 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c61aba64-da18-4530-99d7-baa13a12d9a6 - status: 200 OK - code: 200 - duration: 19.012873ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49e2fd2b-8eaf-44d3-95b0-d6e51b283893 - status: 200 OK - code: 200 - duration: 18.193115ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 094f1b4d-1160-444d-b93c-61fe9a04bb6f - status: 200 OK - code: 200 - duration: 17.655867ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cf6c238d-a9a9-4882-af45-4bfee904da3e - status: 200 OK - code: 200 - duration: 19.620203ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 129 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterAutoUpgrade\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8550452a-107e-47d5-a497-905a7b2a7127 - status: 200 OK - code: 200 - duration: 164.256819ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8a535075-4ede-4ccc-b74b-749425569d54 - status: 200 OK - code: 200 - duration: 22.833064ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 195 - host: api.scaleway.com - body: "{\"name\":\"test-auto-upgrade\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02c89b55-d6d9-4daf-8fa5-95e4e8795bc6 - status: 200 OK - code: 200 - duration: 1.546550841s -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3393b14d-0ccf-4c6a-afde-c33291eba66e - status: 200 OK - code: 200 - duration: 87.555896ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 785 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"test-auto-upgrade\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"auto_upgrade\"],\"version\":\"1.33.4\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"auto_upgrade\":{\"enable\":false,\"maintenance_window\":{\"start_hour\":0,\"day\":\"any\"}},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1605 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.126989Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1605" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4324d8e2-4594-43db-ad28-460037fbdc4c - status: 200 OK - code: 200 - duration: 264.69915ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1604 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.126989Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1604" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c61227b2-a30f-426e-befd-16d2de48c63e - status: 200 OK - code: 200 - duration: 89.915234ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c8020af1-c996-42ba-8832-9463ace4c812 - status: 200 OK - code: 200 - duration: 83.322611ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3638e482-e186-4e61-ac66-e145c7d04d5c - status: 200 OK - code: 200 - duration: 22.847571ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7067d19b-581f-47b3-8409-a98aa7ff60bd - status: 200 OK - code: 200 - duration: 82.618109ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8966ca4c-3d04-49e1-a35e-56001dd5b90d - status: 200 OK - code: 200 - duration: 74.461039ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a32f2473-9102-4e6e-8247-48b8f1580e47 - status: 200 OK - code: 200 - duration: 22.490471ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f48a0ebe-2d78-471a-9601-de26dbdc7306 - status: 200 OK - code: 200 - duration: 68.670682ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 98f0ee04-ae19-4061-9d72-df04f2af7323 - status: 200 OK - code: 200 - duration: 22.399189ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1e04513-9054-4087-a090-87ebc52d2d53 - status: 200 OK - code: 200 - duration: 23.600604ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7cdec6cf-85c1-4aff-a772-24ffba7c76dd - status: 200 OK - code: 200 - duration: 82.395881ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 43266110-f4a8-44ab-bf99-b372f3315577 - status: 200 OK - code: 200 - duration: 21.161195ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 56a27071-d8fe-4b2b-9e35-6d886ff1efff - status: 200 OK - code: 200 - duration: 30.402229ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97a32128-31f4-4d95-a004-77c29a916e1c - status: 200 OK - code: 200 - duration: 19.678572ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54a2f12f-19dc-4c5a-9366-bbae2af1a4c6 - status: 200 OK - code: 200 - duration: 22.688622ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa42a8aa-54b1-49bc-a47b-2f3502f1826b - status: 200 OK - code: 200 - duration: 18.795496ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:19.634737Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e056490-76de-4219-ba9e-f3a15a12beb4 - status: 200 OK - code: 200 - duration: 91.818136ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 592 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":true,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1640 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.623343Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1640" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca47fd43-c8ff-4864-8bb5-41af744ad5ea - status: 200 OK - code: 200 - duration: 104.651932ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1639 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.623343Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1639" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0799cb53-3c34-4281-9592-cbdba2a4d847 - status: 200 OK - code: 200 - duration: 89.656047ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9c13bff5-ad72-482a-9d02-c6c2e86f5d0b - status: 200 OK - code: 200 - duration: 79.517269ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c46341a1-a3a2-4b7b-88eb-1f475aaa8f08 - status: 200 OK - code: 200 - duration: 89.698467ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6f5c30e-4ba2-495a-bdd1-ff879bc91d59 - status: 200 OK - code: 200 - duration: 99.271664ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ae6f5f8-28bd-4524-8336-215d57d57043 - status: 200 OK - code: 200 - duration: 21.552911ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9af382e7-dbf5-4bd3-898d-7eb44032f302 - status: 200 OK - code: 200 - duration: 22.796074ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f3ea8bde-41ae-4891-87a9-effbe9791fd7 - status: 200 OK - code: 200 - duration: 25.145272ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a935cb71-9e35-4b13-8770-1b5601010632 - status: 200 OK - code: 200 - duration: 21.368575ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 89a1b533-8113-44cf-8d28-4ca411c3d440 - status: 200 OK - code: 200 - duration: 24.863434ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 55ce3a96-adc6-430c-8ad4-e56f48fcfe71 - status: 200 OK - code: 200 - duration: 24.891817ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f7b6357d-aa2e-4292-9cce-517c2bf9dcbd - status: 200 OK - code: 200 - duration: 24.334681ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63a9e63b-69b8-4429-827b-63be683dd8bf - status: 200 OK - code: 200 - duration: 17.61499ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f8c569c-a192-4ded-84e5-54073c3bb7af - status: 200 OK - code: 200 - duration: 21.212331ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0f3cfda-2eae-4ab5-9e62-94d00fd1cdb9 - status: 200 OK - code: 200 - duration: 19.198823ms -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:25.655855Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d41f6857-e378-4145-9c6b-a16aefd7577e - status: 200 OK - code: 200 - duration: 23.842398ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 592 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1640 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:31.895797Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1640" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 80717c18-c0fa-4027-883e-8edc35a39298 - status: 200 OK - code: 200 - duration: 44.368311ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1639 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:31.895797Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1639" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e5e76053-7766-411b-996c-9fa30f89ce7f - status: 200 OK - code: 200 - duration: 82.973686ms -- id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:32.033137Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 49d11024-35c6-41de-bbaf-6922163f5679 - status: 200 OK - code: 200 - duration: 76.830856ms -- id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 41 - host: api.scaleway.com - body: "{\"version\":\"1.34.1\",\"upgrade_pools\":true}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/upgrade - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.167876Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 625e41a1-fd14-4610-88a7-93c8490364c4 - status: 200 OK - code: 200 - duration: 116.717096ms -- id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1640 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.167876Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1640" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9b02f0d5-7f36-45d6-9123-df77f6508252 - status: 200 OK - code: 200 - duration: 20.448839ms -- id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71e8d524-7bf6-41e6-8265-f9b890d1e40f - status: 200 OK - code: 200 - duration: 99.399805ms -- id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c8a045a-965c-487f-b691-154be237dafb - status: 200 OK - code: 200 - duration: 83.751215ms -- id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 37c60102-0c82-4073-a37a-74d6424ec849 - status: 200 OK - code: 200 - duration: 18.988148ms -- id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - facfb55a-c515-45c2-a94a-de73bf70fcdc - status: 200 OK - code: 200 - duration: 21.638591ms -- id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b0806295-7db0-4365-bb4f-8c074b38a94e - status: 200 OK - code: 200 - duration: 87.412196ms -- id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f517d49-05f6-465c-b853-c03ae351ac73 - status: 200 OK - code: 200 - duration: 23.369269ms -- id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18b80b2b-3b74-46aa-8466-65094776d434 - status: 200 OK - code: 200 - duration: 43.714294ms -- id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18405f3e-a42d-4e66-b7b8-0eee25bbf4c7 - status: 200 OK - code: 200 - duration: 35.413044ms -- id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18431230-3978-4f3e-98dd-2aa55dbccc0b - status: 200 OK - code: 200 - duration: 22.658125ms -- id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa97b450-0c64-4bf6-ae7d-dbe4d67a86c1 - status: 200 OK - code: 200 - duration: 91.478037ms -- id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 45a08eb0-c0c0-49bc-903b-da41e28a3f4b - status: 200 OK - code: 200 - duration: 24.953763ms -- id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - be95d270-0ac0-4713-a1f1-ed24bac393d9 - status: 200 OK - code: 200 - duration: 24.332227ms -- id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b49e2bd-2e61-4821-a31a-a5ff6d2210c2 - status: 200 OK - code: 200 - duration: 22.54894ms -- id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b25883a-9da6-477d-862b-40b6757dcfc6 - status: 200 OK - code: 200 - duration: 25.506711ms -- id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:37.211852Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1f24554-d4e8-40f1-9198-c957c9e6fc12 - status: 200 OK - code: 200 - duration: 87.949425ms -- id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 593 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":false,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1642 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.531948Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1642" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 784f74d1-da1d-4f3a-8dad-d118e3fdb849 - status: 200 OK - code: 200 - duration: 40.724733ms -- id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7df9423e-2a97-4c39-bda9-3c623c979fb1 - status: 200 OK - code: 200 - duration: 127.957552ms -- id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 33ff1afd-2b58-4e18-a54b-edb5cc7bce88 - status: 200 OK - code: 200 - duration: 20.807632ms -- id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c6ce13fd-59e3-4353-836c-988bee88a38d - status: 200 OK - code: 200 - duration: 99.964174ms -- id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e94a330e-0a60-46aa-a230-015b658f0f5d - status: 200 OK - code: 200 - duration: 20.496448ms -- id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b623fba-2de6-4f87-a393-b1d274d78ad2 - status: 200 OK - code: 200 - duration: 28.862459ms -- id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 57a31211-fc6c-4999-b66c-1ef0faa766cc - status: 200 OK - code: 200 - duration: 32.460102ms -- id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 248bbd7f-6116-41f1-b542-5fd38efc69bd - status: 200 OK - code: 200 - duration: 24.380268ms -- id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0df80645-7879-4d29-98d6-f9cca033cef7 - status: 200 OK - code: 200 - duration: 79.237133ms -- id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0bdb6c7c-14ad-4c55-a6f6-318a5e55765c - status: 200 OK - code: 200 - duration: 22.65525ms -- id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50cfed44-8143-4d55-b207-dff3b0b22682 - status: 200 OK - code: 200 - duration: 27.245876ms -- id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9dd9b399-2295-4525-ab3d-10bb03fddddc - status: 200 OK - code: 200 - duration: 20.576137ms -- id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 86bab288-15c3-4729-a2c7-f42b6036b719 - status: 200 OK - code: 200 - duration: 22.477035ms -- id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63f5722c-4762-49d2-91c0-e1f1b1a22fff - status: 200 OK - code: 200 - duration: 24.021223ms -- id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1646 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:43.580746Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1646" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bb13903-44f2-4d2e-aa0c-6dfa58ac2cd6 - status: 200 OK - code: 200 - duration: 76.174685ms -- id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 620 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":true,\"maintenance_window\":{\"start_hour\":3,\"day\":\"tuesday\"}},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:44.768611Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a64af9a-5fea-40e0-bf19-fe7b8aae0c99 - status: 200 OK - code: 200 - duration: 41.621185ms -- id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:44.768611Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b5c983b-e243-4839-9ce0-1d7e46a440ab - status: 200 OK - code: 200 - duration: 17.373867ms -- id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:46.843919Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 12f90800-6fa8-4f43-94b5-6984fe820821 - status: 200 OK - code: 200 - duration: 88.204343ms -- id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:46.843919Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0bc558e6-1f73-4c19-a65b-54394311d588 - status: 200 OK - code: 200 - duration: 21.699265ms -- id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19c9c9cb-c55d-47dc-8f4d-a55399493c7b - status: 200 OK - code: 200 - duration: 87.970614ms -- id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:46.843919Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c154d1be-917e-408b-b7af-49aa81248c97 - status: 200 OK - code: 200 - duration: 96.297753ms -- id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b868dc1b-8eaf-44e0-8966-17b4af3fe0e9 - status: 200 OK - code: 200 - duration: 23.685013ms -- id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e05dad51-72be-4031-a4ca-7de8d5ea4981 - status: 200 OK - code: 200 - duration: 28.890943ms -- id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:46.843919Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5fedbe61-ece0-4c5c-bb1c-25d93db1abfb - status: 200 OK - code: 200 - duration: 19.542377ms -- id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0e1f366-66ed-4c3c-acec-e84207e56feb - status: 200 OK - code: 200 - duration: 76.088744ms -- id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cfa20f53-d28d-4777-ae2b-a1f820b27d43 - status: 200 OK - code: 200 - duration: 29.812883ms -- id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4b950dee-be2b-4ff1-a869-bc23065fbf84 - status: 200 OK - code: 200 - duration: 19.59739ms -- id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:46.843919Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":3, \"day\":\"tuesday\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 70748409-2909-491d-8dd2-85f4f6810f6a - status: 200 OK - code: 200 - duration: 23.117578ms -- id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e3d4fa53-a97d-4e4d-9e77-b5b6975181e4 - status: 200 OK - code: 200 - duration: 21.740944ms -- id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9617ce54-149a-4017-9ad7-d4294c332f79 - status: 200 OK - code: 200 - duration: 20.527245ms -- id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 616 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":{\"start_hour\":0,\"day\":\"any\"}},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:50.990179Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cbe1f0bf-a2e5-43f8-84d5-b9f378cd8be9 - status: 200 OK - code: 200 - duration: 34.482327ms -- id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1640 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:50.990179Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1640" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d9fcdac7-9ea1-4694-af67-3ce1e1812f9b - status: 200 OK - code: 200 - duration: 19.049963ms -- id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:54.815323Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 586b52d0-4e77-4853-aca8-148ee21a5d1f - status: 200 OK - code: 200 - duration: 105.802031ms -- id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:54.815323Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2d057aa5-d6f0-4bb5-bb9f-28014e020307 - status: 200 OK - code: 200 - duration: 110.983495ms -- id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab833f82-3aa0-47da-9d66-cedb62077a4f - status: 200 OK - code: 200 - duration: 93.888812ms -- id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:54.815323Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 04dcd029-4620-48d3-9f62-19d04b7c864d - status: 200 OK - code: 200 - duration: 23.487862ms -- id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 431 - body: "{\"id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"name\":\"testAccCheckK8SClusterAutoUpgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.205277Z\", \"updated_at\":\"2025-10-30T16:18:17.205277Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "431" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 36ff667f-8392-4a1a-954f-f0ac30b2ea01 - status: 200 OK - code: 200 - duration: 20.607296ms -- id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"name\":\"test-auto-upgrade\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"f806e99f-aabe-45cb-b5dc-614eb3ba4812\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"172.17.28.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}, {\"id\":\"ec3d3ce7-6a6c-4c19-b06a-7d0ef81190c2\", \"created_at\":\"2025-10-30T16:18:18.178723Z\", \"updated_at\":\"2025-10-30T16:18:18.178723Z\", \"subnet\":\"fd5f:519c:6d46:2624::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\"}], \"vpc_id\":\"a84ecae9-5f44-4768-a630-c28141d64f20\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c93418bd-7b9a-4e19-9aa3-d13d56538ec2 - status: 200 OK - code: 200 - duration: 32.329637ms -- id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1645 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:54.815323Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1645" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c1c5ebcc-23f5-47fd-a3ff-67e9a6be893e - status: 200 OK - code: 200 - duration: 20.99336ms -- id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2Q0VDFadldFUlVUVEZOVkVGNVQxUkZNazFVWjNoUFZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU1ZGWVlVTXljbWxuUmtGak0wdFJDalZWYWpSalRHNVRjM1pLYmpabGRuUkthSEJyVTNOS05YYzJZVTg0VmpnMGVrZFJMMk52VlRsU1VpdGxZblpMVERSeGRFODBORUk0TVZvMFkzQndaa2NLT1dGdlkxSmxUMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pTVjNReE9YcE1abmMzYTNGUE1FWkNiSE4zVUdsSmRuWTNhMGRVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBSVUZuT1RSekNrTjViV2gwTUdaNE1HcEJNbFExUXl0QmVrSmxkbm93Y1RsVFJFVXdkSGg2VG5CSGVGUjJORU5KUTBOTFlrZzRlRXR3WVVJeFVIaHRjMHgzTmxvM01WQUtVaXRhSzFOTk5rZDBObGRFUVV4dVNraDJlRWtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vNDJjNTcwNjgtODRmMC00NmJmLThmZTMtZmFiMTk4ZWYyYWY0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogYmVRNlIxcEk2TEViSDJmRldaMWhFVzZUWVh5bFFjVWlLOTVDUWk2b0NkZmlvWHNrNDFNZGRZMFU=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7a3ef419-07a6-4d62-9388-32f59b735f32 - status: 200 OK - code: 200 - duration: 24.864115ms -- id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:57.015801Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 20e9da0f-3ecc-458e-a222-931c75515c65 - status: 200 OK - code: 200 - duration: 141.421942ms -- id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1640 - body: "{\"region\":\"fr-par\", \"id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.126989Z\", \"updated_at\":\"2025-10-30T16:18:57.015801Z\", \"type\":\"kapsule\", \"name\":\"test-auto-upgrade\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"auto_upgrade\"], \"cluster_url\":\"https://42c57068-84f0-46bf-8fe3-fab198ef2af4.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.42c57068-84f0-46bf-8fe3-fab198ef2af4.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":true, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\", \"commitment_ends_at\":\"2025-10-30T16:18:19.126997Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"73c05c75-c0af-453d-ab23-56a3ef1260cf\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1640" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ab079d61-837c-451d-9ddc-c0d21eaa03f5 - status: 200 OK - code: 200 - duration: 26.061804ms -- id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:19:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ea23a7ef-6851-49b7-8916-1ec09aba1a80 - status: 404 Not Found - code: 404 - duration: 23.866312ms -- id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:19:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6a5ddedb-eb99-438a-8f33-891a9fc44b7d - status: 204 No Content - code: 204 - duration: 1.565044531s -- id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a84ecae9-5f44-4768-a630-c28141d64f20 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:19:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f2ca3654-ded7-493e-b1b6-9fe1db271af4 - status: 204 No Content - code: 204 - duration: 102.833048ms -- id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/42c57068-84f0-46bf-8fe3-fab198ef2af4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"42c57068-84f0-46bf-8fe3-fab198ef2af4\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:19:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa50c7be-2b05-493b-a181-c3b101b6f467 - status: 404 Not Found - code: 404 - duration: 25.033313ms -- id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bff93345-d46c-4a07-909f-c98c0c4e4142 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"bff93345-d46c-4a07-909f-c98c0c4e4142\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:19:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0abdb279-5d31-4605-8f38-90ddb17150fe - status: 404 Not Found - code: 404 - duration: 28.653317ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 651f8de8-292f-4efa-b450-812122e075de + status: 200 OK + code: 200 + duration: 155.96225ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 15e2afd5-7bf8-48a5-b952-7abe12453636 + status: 200 OK + code: 200 + duration: 31.212125ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - db57f326-e8f5-450e-b2a2-92f55fb321e9 + status: 200 OK + code: 200 + duration: 32.162209ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d0190155-ccd8-44dc-9476-1f31a68ea003 + status: 200 OK + code: 200 + duration: 26.064792ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 129 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterAutoUpgrade","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 15f28604-2efe-442e-bb89-25eb67f19d18 + status: 200 OK + code: 200 + duration: 76.295875ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0de559b2-659e-4f09-9a0a-1eda29642970 + status: 200 OK + code: 200 + duration: 25.246291ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 195 + host: api.scaleway.com + body: '{"name":"test-auto-upgrade","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - db91942e-36e2-4846-bb50-83569c798fd6 + status: 200 OK + code: 200 + duration: 705.052917ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 64dd288a-2b88-4636-a14d-5dacce5603ea + status: 200 OK + code: 200 + duration: 26.802166ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 785 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-auto-upgrade","description":"","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"version":"1.34.3","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"auto_upgrade":{"enable":false,"maintenance_window":{"start_hour":0,"day":"any"}},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1530 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.031388Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"creating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1530" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9c2295e7-2a4f-48b7-9f15-439bb782f130 + status: 200 OK + code: 200 + duration: 230.679583ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1530 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.031388Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"creating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1530" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3a33c52f-7bfa-407c-b2c9-b10c0630ac92 + status: 200 OK + code: 200 + duration: 40.233ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6415ac58-bf01-4f4a-a094-85bdf72eb68f + status: 200 OK + code: 200 + duration: 46.431708ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 70205853-8284-44fc-b0d3-c015e7ca7927 + status: 200 OK + code: 200 + duration: 36.873792ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cab59f6c-ab5a-43e3-99b2-7ee5d387ad47 + status: 200 OK + code: 200 + duration: 21.919833ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 973ec07c-e9e0-4da6-8dee-c15da0255b47 + status: 200 OK + code: 200 + duration: 31.129458ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cf2d2e67-fbe9-484f-9022-239bd5191295 + status: 200 OK + code: 200 + duration: 28.926167ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c7ec24ae-7c78-4a0f-8de8-170cd65ff817 + status: 200 OK + code: 200 + duration: 30.856667ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cd7d054c-5505-4401-81db-b7c918a3d678 + status: 200 OK + code: 200 + duration: 23.556375ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fc685a5b-95fb-4497-aaf5-46a55c2fdfb8 + status: 200 OK + code: 200 + duration: 27.411542ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e906a80c-50d9-4dfe-ad3c-60dc3237876d + status: 200 OK + code: 200 + duration: 31.563458ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6a757a9a-b451-450b-8c9b-9a83a4b0796c + status: 200 OK + code: 200 + duration: 33.5885ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 69773db0-231f-409a-9b92-86408caed6bd + status: 200 OK + code: 200 + duration: 23.9225ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 561343f6-fe82-4792-b6d4-97462202e6df + status: 200 OK + code: 200 + duration: 94.0885ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d1234d5e-edb7-4e59-8508-3554a5d3858d + status: 200 OK + code: 200 + duration: 21.335959ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2a9be98f-6a55-407d-a46e-a7bd93032e47 + status: 200 OK + code: 200 + duration: 25.36175ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:35.528110Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 75e86451-0851-4ded-9fc9-e61ed0520d19 + status: 200 OK + code: 200 + duration: 34.1185ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 592 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":true,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1565 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.918367Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1565" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5e2bcbdc-9802-4d15-8543-a549778fd0dc + status: 200 OK + code: 200 + duration: 41.708916ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2a020991-052c-4909-aa0d-04d11939f888 + status: 200 OK + code: 200 + duration: 23.053208ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 37d2867c-b2f7-4230-a648-c94d60498971 + status: 200 OK + code: 200 + duration: 27.046709ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 55dae3f9-d7f3-4b85-88d5-9fb725b623b3 + status: 200 OK + code: 200 + duration: 24.429375ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 155aa6fb-ec07-4485-8449-4ba365ffa205 + status: 200 OK + code: 200 + duration: 38.733666ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 63310bfb-838b-45d6-8843-1caa5d0d8e77 + status: 200 OK + code: 200 + duration: 34.278833ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1040ec2d-12a3-42e6-b93e-1b1c11d3363b + status: 200 OK + code: 200 + duration: 25.913291ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 416a7f56-3262-48b1-8c9b-602b98f1abb2 + status: 200 OK + code: 200 + duration: 28.463ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b6850900-3a0a-48e3-a377-b18b15a9acad + status: 200 OK + code: 200 + duration: 75.753917ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8d1809ea-f344-4884-b1f0-da597835383a + status: 200 OK + code: 200 + duration: 33.718083ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d54950f6-b700-44f2-92fc-ad7b5cfa097e + status: 200 OK + code: 200 + duration: 30.952708ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 01e3aecd-df9e-4576-be1a-08d0fe51fbe8 + status: 200 OK + code: 200 + duration: 83.953417ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 40cc4f55-1b62-4c27-900f-09ffcedf1fa4 + status: 200 OK + code: 200 + duration: 35.454958ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6ca9b315-2d17-45c3-935e-32de233c90e3 + status: 200 OK + code: 200 + duration: 23.33675ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:41.949474Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 062dd983-fafa-4963-8125-d4261a982f1c + status: 200 OK + code: 200 + duration: 28.053041ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 592 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1565 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:43.646560Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1565" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 25036247-a98e-4764-a0f9-d3437cfb436f + status: 200 OK + code: 200 + duration: 40.330417ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1565 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:43.646560Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1565" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 74697ee3-bc36-447e-89b5-756e25f55e44 + status: 200 OK + code: 200 + duration: 102.609458ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:43.688677Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b86bfdc7-44f4-4b51-9f11-958771de9a62 + status: 200 OK + code: 200 + duration: 35.481334ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 41 + host: api.scaleway.com + body: '{"version":"1.35.0","upgrade_pools":true}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/upgrade + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1566 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.920472Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1566" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e1f62b46-967f-4b9e-b609-10dc5980a0a6 + status: 200 OK + code: 200 + duration: 152.48325ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4cf51337-d7a8-443f-afab-907fe4073460 + status: 200 OK + code: 200 + duration: 67.09075ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 57a1cc08-3c68-40a2-9aad-760239ed0a0d + status: 200 OK + code: 200 + duration: 99.566208ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d6d30086-a572-416d-827e-0f7eb2b921fd + status: 200 OK + code: 200 + duration: 28.865541ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1b4d348e-c756-49f6-946b-1da68a62b62e + status: 200 OK + code: 200 + duration: 35.972375ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a8c118c3-4461-4299-93a9-3585abddb606 + status: 200 OK + code: 200 + duration: 123.701625ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cb45a4b6-0f40-4a45-9673-cdaab84733d9 + status: 200 OK + code: 200 + duration: 21.076042ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 080541be-0ea4-4da5-935b-48bef11db7c7 + status: 200 OK + code: 200 + duration: 37.279625ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a3d9e00e-2411-4c5b-abcb-4d5719bf8ae9 + status: 200 OK + code: 200 + duration: 27.39925ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 08fc07f9-ced5-4a24-bd18-2dd8999a099e + status: 200 OK + code: 200 + duration: 29.55575ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - be620bcc-627b-46dc-b6bf-fb87c8da3ce1 + status: 200 OK + code: 200 + duration: 26.19675ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 80222f61-2353-46fb-9a27-570755c603b9 + status: 200 OK + code: 200 + duration: 33.097958ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 29d9cd6b-72d8-475c-8e91-d49758cd8774 + status: 200 OK + code: 200 + duration: 28.177875ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d459a1fa-2bf5-4cc8-996b-36204e8f6ed9 + status: 200 OK + code: 200 + duration: 42.072083ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c344d25b-48a1-449e-882c-9ad6be05fcc0 + status: 200 OK + code: 200 + duration: 90.047708ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:48.958667Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fc1bfad4-0091-47c9-9bf4-7a90328ecccd + status: 200 OK + code: 200 + duration: 85.331667ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 593 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":false,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1567 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.754122Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1567" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 61152f2b-bdcc-4d57-840d-2201feb15214 + status: 200 OK + code: 200 + duration: 106.533709ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - befb9686-50df-403c-84e3-64b349aec927 + status: 200 OK + code: 200 + duration: 32.5105ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 461e11eb-4e00-40ec-a996-b2192e0d9996 + status: 200 OK + code: 200 + duration: 34.735791ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 58b31afc-a09d-4f19-b537-1fffed58eb5b + status: 200 OK + code: 200 + duration: 28.209584ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9dca5491-bff3-4067-8e48-503498804a29 + status: 200 OK + code: 200 + duration: 30.302292ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9ee5c8a7-e231-467a-bb1e-a7c75d4f015a + status: 200 OK + code: 200 + duration: 24.832291ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - eb13b337-919a-4832-a765-2d6f04304351 + status: 200 OK + code: 200 + duration: 25.833083ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 95d325db-52e3-41af-bdad-abfbaa1e62f7 + status: 200 OK + code: 200 + duration: 22.846375ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e37b3313-78ca-4d56-bbd6-2ebedbada21a + status: 200 OK + code: 200 + duration: 87.653167ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ccb2f5cf-9401-4295-9fd9-60736633dcf8 + status: 200 OK + code: 200 + duration: 32.013375ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 440d4a0e-e715-4eea-8847-e8d5598d1fad + status: 200 OK + code: 200 + duration: 30.855667ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - bb57c5df-95d2-4fcf-a16a-debe6724b89b + status: 200 OK + code: 200 + duration: 35.344917ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cf1f3052-e467-4e7f-9043-dac8198cad5a + status: 200 OK + code: 200 + duration: 29.163333ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0e190fce-98fd-4f3e-8d4e-efe0be30bceb + status: 200 OK + code: 200 + duration: 34.724167ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1572 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:50.784497Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1572" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3e5e4b6b-bfb6-45aa-bac3-3c500a0cea12 + status: 200 OK + code: 200 + duration: 38.114125ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 620 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.246413Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 60e8703b-5a9f-4845-bf43-2e6b3297bd23 + status: 200 OK + code: 200 + duration: 51.533208ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.246413Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6394abad-9bae-43ba-943f-a3393047d649 + status: 200 OK + code: 200 + duration: 21.763666ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.293517Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - bf425451-3a44-4421-9694-b9a3f114d2e4 + status: 200 OK + code: 200 + duration: 82.595583ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.293517Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d015a4df-7219-4ece-bc12-901240f3839e + status: 200 OK + code: 200 + duration: 31.760458ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 71df42a8-b84b-4b66-a4d5-eb8adfc2ecd9 + status: 200 OK + code: 200 + duration: 88.690917ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.293517Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6f3f7ecf-a7e2-4a15-9638-9a06c6462665 + status: 200 OK + code: 200 + duration: 25.148333ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 602a164e-2769-416b-83aa-1d78c660d36c + status: 200 OK + code: 200 + duration: 26.9445ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 59a42672-059c-45fe-9a7c-654e1f617d75 + status: 200 OK + code: 200 + duration: 33.760625ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.293517Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 50bc1e86-963e-4fb1-b70e-060f0cc7841e + status: 200 OK + code: 200 + duration: 26.944ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6ee20788-9d7f-43a9-a8c2-c4ac87c32d49 + status: 200 OK + code: 200 + duration: 113.802584ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4f6dcbec-d76a-42c7-aea0-bb305821b53e + status: 200 OK + code: 200 + duration: 24.511792ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a18d1b31-c336-4822-ba88-e6eda6e0141f + status: 200 OK + code: 200 + duration: 28.890125ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1575 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:52.293517Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":3,"day":"tuesday"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1575" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 21663d3b-fd7e-4356-a67d-ac81cd5c5218 + status: 200 OK + code: 200 + duration: 33.132625ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - aa5c14f8-3344-4a49-a9d7-18af6787c66d + status: 200 OK + code: 200 + duration: 23.752833ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 379cf560-c26c-41f9-bdaa-b5369e7974f7 + status: 200 OK + code: 200 + duration: 28.440625ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 616 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":{"start_hour":0,"day":"any"}},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1566 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.718526Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1566" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c4e9923c-d96a-4585-a70e-08450624ece3 + status: 200 OK + code: 200 + duration: 44.225875ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.755347Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d18cadf1-4b68-4c5d-9d6c-6c4b1c9f2a69 + status: 200 OK + code: 200 + duration: 32.568125ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.755347Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 192ceb75-8a57-49d5-94e2-cb2d9bb01ac5 + status: 200 OK + code: 200 + duration: 26.528875ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 38b0549c-2354-4209-b0fc-af66f0add0fb + status: 200 OK + code: 200 + duration: 35.792917ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.755347Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9e46a24e-bd58-4dfe-b74d-6e55ee5cbcc9 + status: 200 OK + code: 200 + duration: 27.80675ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 420 + body: '{"id":"0ba4f63c-caaf-4586-840c-acac83f07055","name":"testAccCheckK8SClusterAutoUpgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.035098Z","updated_at":"2026-01-29T16:43:34.035098Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "420" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 24a32cb4-41b9-48ff-a4a6-11a33a26c6a2 + status: 200 OK + code: 200 + duration: 29.415333ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","name":"test-auto-upgrade","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"45633e61-fb39-4669-88fc-6380c1bb3afd","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"172.16.96.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"},{"id":"85b0e4b2-7fe9-4f32-8422-43503056477c","created_at":"2026-01-29T16:43:34.174185Z","updated_at":"2026-01-29T16:43:34.174185Z","subnet":"fd5f:519c:6d46:e914::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055"}],"vpc_id":"0ba4f63c-caaf-4586-840c-acac83f07055","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0fbfeba7-e953-4444-8a6b-6f8ce66bc81b + status: 200 OK + code: 200 + duration: 23.518375ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.755347Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f59b1c4b-8e6a-4828-b2b8-65a277934106 + status: 200 OK + code: 200 + duration: 24.77925ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d6d0b7a0-3900-4850-9777-23ac84a5a956 + status: 200 OK + code: 200 + duration: 25.079583ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1571 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:43:58.755347Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1571" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 60a71d8d-dbbc-4e2a-baef-aa94c1cab551 + status: 200 OK + code: 200 + duration: 36.993916ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0by11cGdyYWRlIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk9SRTE2VGxadldFUlVUVEpOUkVWNVQwUkZNazVFVFhwT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVEhBdmMyMVhaRzFvVW10NVQwTjNDbXRWVEdwNVNFOWtkMmxaVDBJelRWUTJWbUoyYTFRMFVrVkNhazFhV0d0V1dEaEdTVzEyVERkbFNsQm9RM05YTkZkR1QySkVjMUpqV2pOU1RGRldNa01LYzNZeWR6UkxRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVTHk4MVMyVjJlWE01VXpkVlZ6WlRRVUpsY2s1aGFrRjJUelpVUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmRRYVVGSUNqSjZSbEZ3U21RMWREQTVRbFF2YkU5a1MzRkdWV3gzWmxGUmNGcFpkblpaWkRKVU9VOVJTV2RJTkhoRlFsUXpSMmcwYzBVNFVVTnVUSEV6UzNWdVdYa0tUekZ5ZFVzMWVIQmpVME01TjJ3dmFUUk5WVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vMTgxYWZkZmItMWNjMy00MDAwLWI3MzYtY2FlZDlhZGQ3MWYwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtYXV0by11cGdyYWRlCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LWF1dG8tdXBncmFkZSIKICAgIHVzZXI6IHRlc3QtYXV0by11cGdyYWRlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1hdXRvLXVwZ3JhZGUKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LWF1dG8tdXBncmFkZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeWFuOUJ1bFF3dEwydDQydVBrTHZJdU1IVHN4MnNsNUdBNkU2Q1lDSFdaZ3h1ZzZOMUVDZElwUE0="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1fca7db3-daf1-4d4d-965d-e34693f32ff9 + status: 200 OK + code: 200 + duration: 34.606333ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1566 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:44:00.264255Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1566" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 516631c2-c945-4d17-a3e3-81f7d3e604a1 + status: 200 OK + code: 200 + duration: 101.151208ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1566 + body: '{"region":"fr-par","id":"181afdfb-1cc3-4000-b736-caed9add71f0","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:35.031388Z","updated_at":"2026-01-29T16:44:00.264255Z","type":"kapsule","name":"test-auto-upgrade","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","auto_upgrade"],"cluster_url":"https://181afdfb-1cc3-4000-b736-caed9add71f0.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.181afdfb-1cc3-4000-b736-caed9add71f0.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":true,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","commitment_ends_at":"2026-01-29T16:43:35.031398Z","acl_available":true,"iam_nodes_group_id":"aa727fdf-ac8e-47cf-9135-112f4112d319","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1566" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8760ffc4-fcad-4b5e-9cbd-b3ebb60135f4 + status: 200 OK + code: 200 + duration: 30.359042ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"181afdfb-1cc3-4000-b736-caed9add71f0","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ece9706b-ff47-494d-9635-5ebd53f9615a + status: 404 Not Found + code: 404 + duration: 29.515833ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ccc02c83-c3b2-470a-b923-dd9809a9e823 + status: 204 No Content + code: 204 + duration: 1.447162167s + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0ba4f63c-caaf-4586-840c-acac83f07055 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c3279760-0294-40c7-ad06-e21c2d0988a1 + status: 204 No Content + code: 204 + duration: 144.664334ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/181afdfb-1cc3-4000-b736-caed9add71f0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"181afdfb-1cc3-4000-b736-caed9add71f0","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e57e04cf-5a4c-4ae7-b658-64e12c86f738 + status: 404 Not Found + code: 404 + duration: 30.2225ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9a9d9b1c-5f1c-40eb-8707-fdf9be165bde + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"9a9d9b1c-5f1c-40eb-8707-fdf9be165bde","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8ced2e44-24a1-437d-865c-f48b5e105435 + status: 404 Not Found + code: 404 + duration: 25.593708ms diff --git a/internal/services/k8s/testdata/cluster-autoscaling.cassette.yaml b/internal/services/k8s/testdata/cluster-autoscaling.cassette.yaml index ab0ff0da6a..0f55a4954e 100644 --- a/internal/services/k8s/testdata/cluster-autoscaling.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-autoscaling.cassette.yaml @@ -1,1272 +1,1304 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 922b91d8-2171-4b05-98c2-4223402cea0f - status: 200 OK - code: 200 - duration: 24.123095ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 134 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigAutoscaler\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:17.139331Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa31e852-9055-4a0e-9bf3-6d8306bff718 - status: 200 OK - code: 200 - duration: 153.685248ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:17.139331Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92128c99-fe4e-4c4b-9dac-183b222629db - status: 200 OK - code: 200 - duration: 121.829281ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 193 - host: api.scaleway.com - body: "{\"name\":\"test-autoscaler\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1085 - body: "{\"id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"name\":\"test-autoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"341414d5-b543-4670-86b5-268a15780780\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"172.16.16.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}, {\"id\":\"066e361e-477e-4b8f-bd84-0c06ed5237eb\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"fd5c:d510:d730:b4f1::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}], \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "1085" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a384e48-5ec8-4358-b759-393547472082 - status: 200 OK - code: 200 - duration: 855.375056ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1085 - body: "{\"id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"name\":\"test-autoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"341414d5-b543-4670-86b5-268a15780780\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"172.16.16.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}, {\"id\":\"066e361e-477e-4b8f-bd84-0c06ed5237eb\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"fd5c:d510:d730:b4f1::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}], \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "1085" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b8eb1ec-62cb-48e1-9335-c7240230eed8 - status: 200 OK - code: 200 - duration: 120.200082ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 701 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"test-autoscaler-01\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"autoscaler-config\"],\"version\":\"1.34.1\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":true,\"scale_down_delay_after_add\":\"20m\",\"estimator\":\"binpacking\",\"expander\":\"most_pods\",\"ignore_daemonsets_utilization\":true,\"balance_similar_node_groups\":true,\"expendable_pods_priority_cutoff\":10,\"scale_down_unneeded_time\":\"20m\",\"scale_down_utilization_threshold\":0.77,\"max_graceful_termination_sec\":1337},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1617 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:18.636539Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1617" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6e9c5a4-48a2-46bb-91db-f74a57ce81f8 - status: 200 OK - code: 200 - duration: 408.104314ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1616 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:18.636539Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1616" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aee1df3b-c8f9-4e69-afae-11985bfe241d - status: 200 OK - code: 200 - duration: 113.865243ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:19.372777Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 933523cd-213b-4743-9c80-fe70b4c88072 - status: 200 OK - code: 200 - duration: 109.349018ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2723561-ab44-4492-aa11-55cd9854402b - status: 200 OK - code: 200 - duration: 115.452022ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:19.372777Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 601fd604-e10f-4848-a3e2-f1cd17eb119b - status: 200 OK - code: 200 - duration: 44.638198ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyTTFPVmM1V0ZaaWRIYzFjRTlYQ2pSRGFTOXlTV1JTVkhWTFdrOHZOMGgwYW0xcVdXSXdjbnBhZHpnNGRFdFdlR1l3ZDBjeWIxVkhZMlo1TkhaclVrc3JjMjlhU1hGbmVIaFdSbGh4VFd3S1ZFVlRVbTVPYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUk5uUmhlbWs0YmtoNVZYY3dOVFZMVUVWS1lrZHhSREEyU1hwcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVVSaGJVaHlDbEp2VjB0RE16UnljM1ZQU0hGTFkzQXZSbTU1V0VWNFNVWlJNM0p5ZDNWNFRHSnFhMXBSU1doQlRUaHBSblpqWlZZME9HUkVRMGcxTUhkc2JqTXdOMGdLUTJ0eGNqUlhWM2swWmtWNlJWcHVLekF6U0hrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzk3Y2U0MWJhLTA2N2YtNDk5MS1hNjg5LTU4NWZhNmIxYWE0Yi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQVRIUVA2SUxrNWtOU2lvZWNUQXhPTXBhdWFnTGduNnhSbjlVeHB4eTA2MHBqZnd4RHBvYXluZW4=\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f14ad7ab-c027-4786-aeff-0bc0c16c3d8e - status: 200 OK - code: 200 - duration: 96.077168ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:19.372777Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02f3eec8-f496-4cba-a8a4-c7422400dfb9 - status: 200 OK - code: 200 - duration: 33.392101ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:17.139331Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 108bc7bc-2208-4749-9906-5a32b43f9f0b - status: 200 OK - code: 200 - duration: 42.623045ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1085 - body: "{\"id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"name\":\"test-autoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"341414d5-b543-4670-86b5-268a15780780\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"172.16.16.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}, {\"id\":\"066e361e-477e-4b8f-bd84-0c06ed5237eb\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"fd5c:d510:d730:b4f1::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}], \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "1085" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fb7c95fb-6949-4a80-a92a-4abcb9b5ebd6 - status: 200 OK - code: 200 - duration: 104.236232ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:19.372777Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 47f326d3-09cf-48b7-80a5-761bfab0c13f - status: 200 OK - code: 200 - duration: 34.456579ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyTTFPVmM1V0ZaaWRIYzFjRTlYQ2pSRGFTOXlTV1JTVkhWTFdrOHZOMGgwYW0xcVdXSXdjbnBhZHpnNGRFdFdlR1l3ZDBjeWIxVkhZMlo1TkhaclVrc3JjMjlhU1hGbmVIaFdSbGh4VFd3S1ZFVlRVbTVPYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUk5uUmhlbWs0YmtoNVZYY3dOVFZMVUVWS1lrZHhSREEyU1hwcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVVSaGJVaHlDbEp2VjB0RE16UnljM1ZQU0hGTFkzQXZSbTU1V0VWNFNVWlJNM0p5ZDNWNFRHSnFhMXBSU1doQlRUaHBSblpqWlZZME9HUkVRMGcxTUhkc2JqTXdOMGdLUTJ0eGNqUlhWM2swWmtWNlJWcHVLekF6U0hrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzk3Y2U0MWJhLTA2N2YtNDk5MS1hNjg5LTU4NWZhNmIxYWE0Yi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQVRIUVA2SUxrNWtOU2lvZWNUQXhPTXBhdWFnTGduNnhSbjlVeHB4eTA2MHBqZnd4RHBvYXluZW4=\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9a804339-9297-4738-974c-0ac7f9e20c38 - status: 200 OK - code: 200 - duration: 117.243734ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:17.139331Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4c346cdb-bd17-49a2-a4cd-5175c6451da0 - status: 200 OK - code: 200 - duration: 130.346295ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1085 - body: "{\"id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"name\":\"test-autoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"341414d5-b543-4670-86b5-268a15780780\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"172.16.16.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}, {\"id\":\"066e361e-477e-4b8f-bd84-0c06ed5237eb\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"fd5c:d510:d730:b4f1::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}], \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "1085" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d23a5a88-9fa2-4513-8276-00e229391b09 - status: 200 OK - code: 200 - duration: 123.362247ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:19.372777Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-01\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":true, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":true, \"balance_similar_node_groups\":true, \"expendable_pods_priority_cutoff\":10, \"scale_down_unneeded_time\":\"20m\", \"scale_down_utilization_threshold\":0.77, \"max_graceful_termination_sec\":1337}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 699b7e7d-5c3d-4ff3-8897-48af985ffd16 - status: 200 OK - code: 200 - duration: 105.016236ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyTTFPVmM1V0ZaaWRIYzFjRTlYQ2pSRGFTOXlTV1JTVkhWTFdrOHZOMGgwYW0xcVdXSXdjbnBhZHpnNGRFdFdlR1l3ZDBjeWIxVkhZMlo1TkhaclVrc3JjMjlhU1hGbmVIaFdSbGh4VFd3S1ZFVlRVbTVPYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUk5uUmhlbWs0YmtoNVZYY3dOVFZMVUVWS1lrZHhSREEyU1hwcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVVSaGJVaHlDbEp2VjB0RE16UnljM1ZQU0hGTFkzQXZSbTU1V0VWNFNVWlJNM0p5ZDNWNFRHSnFhMXBSU1doQlRUaHBSblpqWlZZME9HUkVRMGcxTUhkc2JqTXdOMGdLUTJ0eGNqUlhWM2swWmtWNlJWcHVLekF6U0hrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzk3Y2U0MWJhLTA2N2YtNDk5MS1hNjg5LTU4NWZhNmIxYWE0Yi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQVRIUVA2SUxrNWtOU2lvZWNUQXhPTXBhdWFnTGduNnhSbjlVeHB4eTA2MHBqZnd4RHBvYXluZW4=\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2b3ca322-a36a-45b3-bc1d-cd5123545d9f - status: 200 OK - code: 200 - duration: 106.756692ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 55 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigAutoscalerChange\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 442 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscalerChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:25.675713Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "442" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d95ceb72-74c4-4e0e-9c8e-5d490585e838 - status: 200 OK - code: 200 - duration: 124.722601ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 442 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscalerChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:25.675713Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "442" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f8d020d2-8720-4c7a-9dfc-5e69afeeb682 - status: 200 OK - code: 200 - duration: 107.75698ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 620 - host: api.scaleway.com - body: "{\"name\":\"test-autoscaler-02\",\"autoscaler_config\":{\"scale_down_disabled\":false,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":false,\"balance_similar_node_groups\":false,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":\"5m\",\"scale_down_utilization_threshold\":0.33,\"max_graceful_termination_sec\":2664},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1654 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.930222Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1654" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2eda4b5a-80d7-4f11-938a-f5c29c4054d6 - status: 200 OK - code: 200 - duration: 136.8176ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1653 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.930222Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1653" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1720fe19-2e97-4664-947c-53d67444772d - status: 200 OK - code: 200 - duration: 93.204396ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1658 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.988798Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1658" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 71c0e8b5-83d8-498f-8776-9b1111cc1086 - status: 200 OK - code: 200 - duration: 127.773827ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1658 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.988798Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1658" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e385bcd7-3b8d-4634-b66d-e8127bf961ca - status: 200 OK - code: 200 - duration: 100.23964ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyTTFPVmM1V0ZaaWRIYzFjRTlYQ2pSRGFTOXlTV1JTVkhWTFdrOHZOMGgwYW0xcVdXSXdjbnBhZHpnNGRFdFdlR1l3ZDBjeWIxVkhZMlo1TkhaclVrc3JjMjlhU1hGbmVIaFdSbGh4VFd3S1ZFVlRVbTVPYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUk5uUmhlbWs0YmtoNVZYY3dOVFZMVUVWS1lrZHhSREEyU1hwcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVVSaGJVaHlDbEp2VjB0RE16UnljM1ZQU0hGTFkzQXZSbTU1V0VWNFNVWlJNM0p5ZDNWNFRHSnFhMXBSU1doQlRUaHBSblpqWlZZME9HUkVRMGcxTUhkc2JqTXdOMGdLUTJ0eGNqUlhWM2swWmtWNlJWcHVLekF6U0hrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzk3Y2U0MWJhLTA2N2YtNDk5MS1hNjg5LTU4NWZhNmIxYWE0Yi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDIKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMiIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQVRIUVA2SUxrNWtOU2lvZWNUQXhPTXBhdWFnTGduNnhSbjlVeHB4eTA2MHBqZnd4RHBvYXluZW4=\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95c722de-59ca-41ea-aa5b-686eb4cde3f3 - status: 200 OK - code: 200 - duration: 137.388532ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1658 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.988798Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1658" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eb8f6e88-09e5-4d6c-9627-b34031c4944c - status: 200 OK - code: 200 - duration: 35.074188ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 442 - body: "{\"id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"name\":\"testAccCheckK8SClusterConfigAutoscalerChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.139331Z\", \"updated_at\":\"2025-10-30T16:18:25.675713Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "442" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e4b51be9-5219-4660-9b79-48271337ac1e - status: 200 OK - code: 200 - duration: 39.607696ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1085 - body: "{\"id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"name\":\"test-autoscaler\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"341414d5-b543-4670-86b5-268a15780780\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"172.16.16.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}, {\"id\":\"066e361e-477e-4b8f-bd84-0c06ed5237eb\", \"created_at\":\"2025-10-30T16:18:17.482193Z\", \"updated_at\":\"2025-10-30T16:18:17.482193Z\", \"subnet\":\"fd5c:d510:d730:b4f1::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\"}], \"vpc_id\":\"0faa3ef8-4715-4d2c-b323-d6c03a683953\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"nl-ams\"}" - headers: - Content-Length: - - "1085" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5984f6d6-9cca-41ff-b437-4e192c9f08f7 - status: 200 OK - code: 200 - duration: 109.109678ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1658 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:25.988798Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1658" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 994bc90e-f2c1-485e-9fac-ad0bf616928a - status: 200 OK - code: 200 - duration: 46.155766ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyTTFPVmM1V0ZaaWRIYzFjRTlYQ2pSRGFTOXlTV1JTVkhWTFdrOHZOMGgwYW0xcVdXSXdjbnBhZHpnNGRFdFdlR1l3ZDBjeWIxVkhZMlo1TkhaclVrc3JjMjlhU1hGbmVIaFdSbGh4VFd3S1ZFVlRVbTVPYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUk5uUmhlbWs0YmtoNVZYY3dOVFZMVUVWS1lrZHhSREEyU1hwcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVVSaGJVaHlDbEp2VjB0RE16UnljM1ZQU0hGTFkzQXZSbTU1V0VWNFNVWlJNM0p5ZDNWNFRHSnFhMXBSU1doQlRUaHBSblpqWlZZME9HUkVRMGcxTUhkc2JqTXdOMGdLUTJ0eGNqUlhWM2swWmtWNlJWcHVLekF6U0hrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzk3Y2U0MWJhLTA2N2YtNDk5MS1hNjg5LTU4NWZhNmIxYWE0Yi5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDIKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMiIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQVRIUVA2SUxrNWtOU2lvZWNUQXhPTXBhdWFnTGduNnhSbjlVeHB4eTA2MHBqZnd4RHBvYXluZW4=\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 19845bbd-d79c-4b32-82db-57c54f73e018 - status: 200 OK - code: 200 - duration: 40.395645ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1654 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:32.237431Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1654" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a17c2e70-1986-4a40-8f48-f2315b213972 - status: 200 OK - code: 200 - duration: 107.546605ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1653 - body: "{\"region\":\"nl-ams\", \"id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.636539Z\", \"updated_at\":\"2025-10-30T16:18:32.237431Z\", \"type\":\"kapsule\", \"name\":\"test-autoscaler-02\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"autoscaler-config\"], \"cluster_url\":\"https://97ce41ba-067f-4991-a689-585fa6b1aa4b.api.k8s.nl-ams.scw.cloud:6443\", \"dns_wildcard\":\"*.97ce41ba-067f-4991-a689-585fa6b1aa4b.nodes.k8s.nl-ams.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"20m\", \"estimator\":\"binpacking\", \"expander\":\"most_pods\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"5m\", \"scale_down_utilization_threshold\":0.33, \"max_graceful_termination_sec\":2664}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\", \"commitment_ends_at\":\"2025-10-30T16:18:18.636549Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"6f0a273f-9ec8-468c-b18d-ba1f25301393\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1653" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 498ae4be-fb56-4e8f-9cb6-4cb6814d9acc - status: 200 OK - code: 200 - duration: 106.865837ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c994076-0eea-4442-ad59-b4c48c00873f - status: 404 Not Found - code: 404 - duration: 52.726267ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c565bf2d-3fe4-44f3-927a-22289916c58d - status: 204 No Content - code: 204 - duration: 1.276686848s -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/0faa3ef8-4715-4d2c-b323-d6c03a683953 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 246c0fab-c121-4a09-8faf-3fa62d7c26c5 - status: 204 No Content - code: 204 - duration: 275.276943ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/97ce41ba-067f-4991-a689-585fa6b1aa4b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"97ce41ba-067f-4991-a689-585fa6b1aa4b\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3cfac7e8-7185-45dd-bd9b-de8632a32533 - status: 404 Not Found - code: 404 - duration: 40.854386ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/dba74b30-fd49-465d-872f-1f84d4aaae90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"dba74b30-fd49-465d-872f-1f84d4aaae90\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ab0b499-5139-41af-a568-621542d6ef25 - status: 404 Not Found - code: 404 - duration: 32.434273ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6123710c-676c-4bef-82bf-3e9eac34e951 + status: 200 OK + code: 200 + duration: 155.53875ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigAutoscaler","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:16.426680Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 96242462-29f5-459c-820e-c93e28eb7ed7 + status: 200 OK + code: 200 + duration: 207.138625ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:16.426680Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - eac2898f-7b21-4820-ba4d-756e339767d6 + status: 200 OK + code: 200 + duration: 172.665459ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 193 + host: api.scaleway.com + body: '{"name":"test-autoscaler","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1061 + body: '{"id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","name":"test-autoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"a359e478-cfcc-4cd7-b3c8-f3745d065846","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"172.16.12.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"},{"id":"86dceff1-d112-4c6a-8858-10e5495fd180","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"fd5c:d510:d730:3c66::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"}],"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"nl-ams"}' + headers: + Content-Length: + - "1061" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9a34fa3b-d5ad-4c68-a6c8-8f0f221c5812 + status: 200 OK + code: 200 + duration: 797.47625ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1061 + body: '{"id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","name":"test-autoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"a359e478-cfcc-4cd7-b3c8-f3745d065846","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"172.16.12.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"},{"id":"86dceff1-d112-4c6a-8858-10e5495fd180","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"fd5c:d510:d730:3c66::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"}],"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"nl-ams"}' + headers: + Content-Length: + - "1061" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b42238d1-fed5-424e-81bb-cf6d67df928f + status: 200 OK + code: 200 + duration: 129.965166ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 701 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-autoscaler-01","description":"","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"version":"1.35.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1542 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:17.920729Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1542" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 11f0ffb4-09d5-4675-afc2-0bfefc471637 + status: 200 OK + code: 200 + duration: 369.842291ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1542 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:17.920729Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1542" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 262be9f7-3ae7-4b14-9b95-714dccfd9390 + status: 200 OK + code: 200 + duration: 111.00025ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1583 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:18.668406Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1583" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b1be006d-e69d-4471-a585-5995bfd4de96 + status: 200 OK + code: 200 + duration: 104.41175ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 7b08ca94-9b58-4411-af91-bece1cd1d906 + status: 200 OK + code: 200 + duration: 129.815583ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1583 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:18.668406Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1583" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b7163932-afdd-41d9-8528-aa9b003fce19 + status: 200 OK + code: 200 + duration: 39.311334ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1899eaec-f812-4936-95e3-10b8e7720ff4 + status: 200 OK + code: 200 + duration: 125.465209ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1583 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:18.668406Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1583" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 6057c4a0-24d4-4399-825a-d50dd86403ec + status: 200 OK + code: 200 + duration: 39.859834ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:16.426680Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 22d1e783-da91-4c78-9527-25185f34b25e + status: 200 OK + code: 200 + duration: 115.722667ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1061 + body: '{"id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","name":"test-autoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"a359e478-cfcc-4cd7-b3c8-f3745d065846","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"172.16.12.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"},{"id":"86dceff1-d112-4c6a-8858-10e5495fd180","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"fd5c:d510:d730:3c66::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"}],"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"nl-ams"}' + headers: + Content-Length: + - "1061" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - a5c96767-7035-46cb-a861-2710eb7e4475 + status: 200 OK + code: 200 + duration: 49.910875ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1583 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:18.668406Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1583" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - db93b043-358a-4ff3-8103-b4a2172f8c1f + status: 200 OK + code: 200 + duration: 47.524041ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e9918a50-813c-46c4-85ba-0a2270a89c13 + status: 200 OK + code: 200 + duration: 37.738667ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:16.426680Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 88953cae-c0aa-4612-b7cd-2f88fe27dc0e + status: 200 OK + code: 200 + duration: 95.878834ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1061 + body: '{"id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","name":"test-autoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"a359e478-cfcc-4cd7-b3c8-f3745d065846","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"172.16.12.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"},{"id":"86dceff1-d112-4c6a-8858-10e5495fd180","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"fd5c:d510:d730:3c66::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"}],"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"nl-ams"}' + headers: + Content-Length: + - "1061" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 51c28c11-dcbd-4c45-a752-fbe762c8abb4 + status: 200 OK + code: 200 + duration: 100.863708ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1583 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:18.668406Z","type":"kapsule","name":"test-autoscaler-01","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":true,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":true,"balance_similar_node_groups":true,"expendable_pods_priority_cutoff":10,"scale_down_unneeded_time":"20m","scale_down_utilization_threshold":0.77,"max_graceful_termination_sec":1337},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1583" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 0556d866-a09c-43f9-97ee-c100e730df00 + status: 200 OK + code: 200 + duration: 101.691292ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMSIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDEKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMSIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f8ff381d-a88e-4419-8f41-fdea6df26bd6 + status: 200 OK + code: 200 + duration: 118.514833ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 55 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigAutoscalerChange"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 431 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscalerChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:25.456501Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "431" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 541ff4fb-21c2-4261-8517-e79f51f22975 + status: 200 OK + code: 200 + duration: 64.777667ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 431 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscalerChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:25.456501Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "431" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 50f31a04-3a12-41c2-abbd-47951e201f83 + status: 200 OK + code: 200 + duration: 99.315458ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 620 + host: api.scaleway.com + body: '{"name":"test-autoscaler-02","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1579 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.647149Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1579" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - b24b853a-6123-4946-8601-0945d747823c + status: 200 OK + code: 200 + duration: 78.949709ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1584 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.698080Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1584" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 4508c303-d891-4bc0-a0cd-f32e04dbfca6 + status: 200 OK + code: 200 + duration: 46.840458ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1584 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.698080Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1584" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1982584c-6df3-4788-a4bf-06d8071ab5a9 + status: 200 OK + code: 200 + duration: 56.226541ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDIKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMiIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - c5488afc-bdd0-4b6c-8a81-a2ce95a69abb + status: 200 OK + code: 200 + duration: 40.786083ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1584 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.698080Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1584" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - d8e526db-7cda-4b7d-8b0d-a0a22fe5548c + status: 200 OK + code: 200 + duration: 45.574708ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 431 + body: '{"id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","name":"testAccCheckK8SClusterConfigAutoscalerChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.426680Z","updated_at":"2026-01-29T16:43:25.456501Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"nl-ams"}' + headers: + Content-Length: + - "431" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 9fd35f8c-96fa-4784-93cf-9fb9f89eb009 + status: 200 OK + code: 200 + duration: 38.823667ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1061 + body: '{"id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","name":"test-autoscaler","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"a359e478-cfcc-4cd7-b3c8-f3745d065846","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"172.16.12.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"},{"id":"86dceff1-d112-4c6a-8858-10e5495fd180","created_at":"2026-01-29T16:43:16.802213Z","updated_at":"2026-01-29T16:43:16.802213Z","subnet":"fd5c:d510:d730:3c66::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6"}],"vpc_id":"01731e79-5560-47a6-ac9d-ae26545bc6b6","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"nl-ams"}' + headers: + Content-Length: + - "1061" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 74e10542-fbd9-469f-b074-bc82ed8b814a + status: 200 OK + code: 200 + duration: 35.771583ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1584 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.698080Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1584" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 674d716b-fa00-4c8c-b1b2-c7c1be172f3a + status: 200 OK + code: 200 + duration: 39.891917ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDIKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMiIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 3d656971-e9ff-435f-8157-b0208c7fbaab + status: 200 OK + code: 200 + duration: 49.662916ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1584 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:25.698080Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1584" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - e11abb51-fdbf-4613-8f83-fdb24266db5f + status: 200 OK + code: 200 + duration: 100.688625ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1680 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtYXV0b3NjYWxlci0wMiIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1MyNTRhVkJHTWtORVRFWnZibUZzQ21vM0syaDVabWRUZG1sRmVVRnBiVFpyTUdnNE9IYzNRMVJEV2k4M2RXVmtla2RzU2tWNGRtNU1VbFp3UldwWGNISm5ZM3ByVWxwcEszcEtVelZCWVhZS1lVVnFlWGd5UzJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFEwazFOR2h1UmtsS1VqbDJVR0U1WlhCdVpHTXpla3B3TjNOcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGcFJVRk5Da3cyWlhKeGRuVnJOM1lyVkdoU1prRjFaMWx6ZDNwM2VVdENOM2x3UzBOYU4wRllNWGRtUVVOSlNHWlVWMUZDZDJWVFdVOTVZVlpqZG5ScllVeG5ibVlLU0dFeWFDdExhMGxZVWtrek5rSTBXQzl0YWxBS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzczODM1OGJiLTMyYjItNDRkZS04MTRiLWJkOTAxN2RjNmZkNC5hcGkuazhzLm5sLWFtcy5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LWF1dG9zY2FsZXItMDIKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtYXV0b3NjYWxlci0wMiIKICAgIHVzZXI6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtYXV0b3NjYWxlci0wMgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtYXV0b3NjYWxlci0wMi1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogaWVxYjJhdHBpUTY3ZUhVZWhpcE1HNEptd3cwakZha1M1QnoyTldQZ1J2ODVxVGlnMmNYcG9nSnc="}' + headers: + Content-Length: + - "1680" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 1da6fd08-2211-4967-ad1e-2a044ac1cb04 + status: 200 OK + code: 200 + duration: 52.294959ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1579 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:27.850149Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1579" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 04fc1839-5790-40fe-94b8-dabddf3170d5 + status: 200 OK + code: 200 + duration: 91.352542ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1579 + body: '{"region":"nl-ams","id":"738358bb-32b2-44de-814b-bd9017dc6fd4","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:17.920729Z","updated_at":"2026-01-29T16:43:27.850149Z","type":"kapsule","name":"test-autoscaler-02","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","autoscaler-config"],"cluster_url":"https://738358bb-32b2-44de-814b-bd9017dc6fd4.api.k8s.nl-ams.scw.cloud:6443","dns_wildcard":"*.738358bb-32b2-44de-814b-bd9017dc6fd4.nodes.k8s.nl-ams.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"20m","estimator":"binpacking","expander":"most_pods","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"5m","scale_down_utilization_threshold":0.33,"max_graceful_termination_sec":2664},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","commitment_ends_at":"2026-01-29T16:43:17.920738Z","acl_available":true,"iam_nodes_group_id":"ab6ae7b2-4b2a-40f4-8888-073474ebb4da","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1579" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2ae66e01-68c6-4b49-94c8-1058efe6defb + status: 200 OK + code: 200 + duration: 47.163ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"738358bb-32b2-44de-814b-bd9017dc6fd4","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2dd6b155-7661-44c2-bf5e-1bcb755f27b3 + status: 404 Not Found + code: 404 + duration: 39.606208ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - 2b471459-2819-4df1-b0b2-3e39cb777b9a + status: 204 No Content + code: 204 + duration: 1.336630125s + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/01731e79-5560-47a6-ac9d-ae26545bc6b6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - abd0b678-eda5-4a00-af3a-fe976492ca6b + status: 204 No Content + code: 204 + duration: 235.985625ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/nl-ams/clusters/738358bb-32b2-44de-814b-bd9017dc6fd4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"738358bb-32b2-44de-814b-bd9017dc6fd4","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - f55ca42a-8ae2-4570-a273-ac443369a1a9 + status: 404 Not Found + code: 404 + duration: 35.270584ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/19a5240c-7c96-4f49-86ae-68ed888a0c4c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"19a5240c-7c96-4f49-86ae-68ed888a0c4c","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + X-Request-Id: + - ad861221-62e8-4d06-a71d-24de393e1aad + status: 404 Not Found + code: 404 + duration: 40.30075ms diff --git a/internal/services/k8s/testdata/cluster-basic.cassette.yaml b/internal/services/k8s/testdata/cluster-basic.cassette.yaml index 3476c87137..5699dbd8be 100644 --- a/internal/services/k8s/testdata/cluster-basic.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-basic.cassette.yaml @@ -1,1407 +1,1471 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 494f40b8-6a3b-419a-9aee-7294e459040f - status: 200 OK - code: 200 - duration: 19.485941ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 670ea94d-0e5a-43f4-b323-ba102c26780f - status: 200 OK - code: 200 - duration: 19.153387ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 116 - host: api.scaleway.com - body: "{\"name\":\"TestAccCluster_Basic\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 418 - body: "{\"id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"name\":\"TestAccCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.057069Z\", \"updated_at\":\"2025-10-30T16:18:17.057069Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "418" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 507a66db-7f3e-4d2f-8a0e-8ed78d0d14af - status: 200 OK - code: 200 - duration: 122.699494ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b663ff1a-dc80-4fc9-b037-334585a1b5f6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 418 - body: "{\"id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"name\":\"TestAccCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.057069Z\", \"updated_at\":\"2025-10-30T16:18:17.057069Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "418" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 775a0c06-beae-44ca-989e-2f7fedcfe259 - status: 200 OK - code: 200 - duration: 151.317284ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 190 - host: api.scaleway.com - body: "{\"name\":\"test-minimal\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1082 - body: "{\"id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"name\":\"test-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"4a162d1b-5c2c-416b-8fc6-4e02a27461be\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}, {\"id\":\"bac17832-2469-47c8-94c1-01edb0c37d3a\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"fd5f:519c:6d46:4b22::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}], \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1082" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6dde6a0-dbe6-423a-bd6a-f49cd8eb79c6 - status: 200 OK - code: 200 - duration: 1.215448806s -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1082 - body: "{\"id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"name\":\"test-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"4a162d1b-5c2c-416b-8fc6-4e02a27461be\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}, {\"id\":\"bac17832-2469-47c8-94c1-01edb0c37d3a\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"fd5f:519c:6d46:4b22::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}], \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1082" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5047853-6053-40eb-acf9-4edc62137738 - status: 200 OK - code: 200 - duration: 81.102214ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 721 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"test-minimal\",\"description\":\"terraform basic test cluster\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"minimal\"],\"version\":\"1.33.4\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1623 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:18.794627Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"creating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1623" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4942bcba-5b23-42d7-90cd-7927ac220c5a - status: 200 OK - code: 200 - duration: 272.431873ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1622 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:18.794627Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"creating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1622" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8d1b72bf-2134-42b4-b82d-26f2b9cfe994 - status: 200 OK - code: 200 - duration: 79.604832ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ba40c1b8-7225-48c5-a131-80f72d8a284c - status: 200 OK - code: 200 - duration: 78.587334ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ba62cb7-a222-4d8a-854f-cee477768046 - status: 200 OK - code: 200 - duration: 21.061939ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48caba8a-f7aa-4401-9eae-8922ec84b563 - status: 200 OK - code: 200 - duration: 103.033605ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1634 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JsSkRiamd6UkdkRFdqaGxUMkZFQ21rM1NrMDRURE5ZVDFsdFlqSkxielp6VjNCTVpWUnFTWFIzU1hvM0t5OUdjbWhCYm1sTEt6ZFVhV2x1T1RaNWNYbHBVVGhhUVd0cldYVkVSakozWldvS1lVODNVemRrVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVZVUXhSamhTY0M5bE5tRTNNVWhuWTJwTmQxUXhXRXh3V0VOVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVV0TloyeHBDa2hTYjNaR09FWk9WMVpMTlZaRlVEUllkVXhRYzB4aE1HOXNWMGxOYkdvd05tODBOM2RSU1dkRE5YWm5ZWGhSTXpBNGRVUnFTRFUzWkcxb01rcDZMMGtLY0VOTk5XcEdRVEk0U3pZek9YbEZSbmRLVFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA0NTgzMzFhLWFkY2YtNDMxMi04YmM2LTBlYjUzYjExMDdiNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ2ZDTzFTRHJHSFZWYWtqeWNrUEdPOGJnVHY2ZmRDZHluUUk4ek9ndUYySjdXYkJkN1hDelo4Z2w=\"}" - headers: - Content-Length: - - "1634" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c82c8d25-96ee-486d-897e-4fd7c217ac07 - status: 200 OK - code: 200 - duration: 99.674771ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8f372ae2-5f69-4472-a84d-c8017e636b1a - status: 200 OK - code: 200 - duration: 21.381779ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b663ff1a-dc80-4fc9-b037-334585a1b5f6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 418 - body: "{\"id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"name\":\"TestAccCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.057069Z\", \"updated_at\":\"2025-10-30T16:18:17.057069Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "418" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 559d8500-76e6-404c-813e-d50001b33342 - status: 200 OK - code: 200 - duration: 21.663568ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1082 - body: "{\"id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"name\":\"test-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"4a162d1b-5c2c-416b-8fc6-4e02a27461be\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}, {\"id\":\"bac17832-2469-47c8-94c1-01edb0c37d3a\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"fd5f:519c:6d46:4b22::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}], \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1082" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 147846ea-546f-4618-b8e6-d951f7d0ac7b - status: 200 OK - code: 200 - duration: 84.916793ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1de7447-4041-4c06-932a-dbd600e3042f - status: 200 OK - code: 200 - duration: 19.753934ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1634 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JsSkRiamd6UkdkRFdqaGxUMkZFQ21rM1NrMDRURE5ZVDFsdFlqSkxielp6VjNCTVpWUnFTWFIzU1hvM0t5OUdjbWhCYm1sTEt6ZFVhV2x1T1RaNWNYbHBVVGhhUVd0cldYVkVSakozWldvS1lVODNVemRrVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVZVUXhSamhTY0M5bE5tRTNNVWhuWTJwTmQxUXhXRXh3V0VOVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVV0TloyeHBDa2hTYjNaR09FWk9WMVpMTlZaRlVEUllkVXhRYzB4aE1HOXNWMGxOYkdvd05tODBOM2RSU1dkRE5YWm5ZWGhSTXpBNGRVUnFTRFUzWkcxb01rcDZMMGtLY0VOTk5XcEdRVEk0U3pZek9YbEZSbmRLVFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA0NTgzMzFhLWFkY2YtNDMxMi04YmM2LTBlYjUzYjExMDdiNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ2ZDTzFTRHJHSFZWYWtqeWNrUEdPOGJnVHY2ZmRDZHluUUk4ek9ndUYySjdXYkJkN1hDelo4Z2w=\"}" - headers: - Content-Length: - - "1634" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d97ef4b5-2305-418e-91d3-313ce786c3e1 - status: 200 OK - code: 200 - duration: 93.859356ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b663ff1a-dc80-4fc9-b037-334585a1b5f6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 418 - body: "{\"id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"name\":\"TestAccCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.057069Z\", \"updated_at\":\"2025-10-30T16:18:17.057069Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "418" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13c0d68b-5c1f-44c4-b821-4fb3d9c90bf3 - status: 200 OK - code: 200 - duration: 23.942155ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1082 - body: "{\"id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"name\":\"test-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"4a162d1b-5c2c-416b-8fc6-4e02a27461be\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}, {\"id\":\"bac17832-2469-47c8-94c1-01edb0c37d3a\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"fd5f:519c:6d46:4b22::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}], \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1082" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2a5ff7ee-0a4f-4a04-a250-97ac00966fb0 - status: 200 OK - code: 200 - duration: 22.871987ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2dbf8662-2ddb-476c-a0ed-4c6cd4bd453e - status: 200 OK - code: 200 - duration: 25.297909ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1634 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JsSkRiamd6UkdkRFdqaGxUMkZFQ21rM1NrMDRURE5ZVDFsdFlqSkxielp6VjNCTVpWUnFTWFIzU1hvM0t5OUdjbWhCYm1sTEt6ZFVhV2x1T1RaNWNYbHBVVGhhUVd0cldYVkVSakozWldvS1lVODNVemRrVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVZVUXhSamhTY0M5bE5tRTNNVWhuWTJwTmQxUXhXRXh3V0VOVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVV0TloyeHBDa2hTYjNaR09FWk9WMVpMTlZaRlVEUllkVXhRYzB4aE1HOXNWMGxOYkdvd05tODBOM2RSU1dkRE5YWm5ZWGhSTXpBNGRVUnFTRFUzWkcxb01rcDZMMGtLY0VOTk5XcEdRVEk0U3pZek9YbEZSbmRLVFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA0NTgzMzFhLWFkY2YtNDMxMi04YmM2LTBlYjUzYjExMDdiNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ2ZDTzFTRHJHSFZWYWtqeWNrUEdPOGJnVHY2ZmRDZHluUUk4ek9ndUYySjdXYkJkN1hDelo4Z2w=\"}" - headers: - Content-Length: - - "1634" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fc5f7d47-e1e3-48c6-beea-817e2d5cc9aa - status: 200 OK - code: 200 - duration: 20.33735ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1663 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:19.297085Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"terraform basic test cluster\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1663" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 54f5460c-8bd2-4948-a3e0-2bad83c1db7a - status: 200 OK - code: 200 - duration: 76.336149ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 609 - host: api.scaleway.com - body: "{\"description\":\"\",\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1631 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:25.290866Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1631" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31d6364e-f539-48d0-9cec-089a327f7aa5 - status: 200 OK - code: 200 - duration: 86.671015ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1630 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:25.290866Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1630" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8fb83a76-152f-4297-b939-08882264b4b1 - status: 200 OK - code: 200 - duration: 87.829479ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:25.324861Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.33.4\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":true, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 72364231-fbaf-44c7-8421-a5a01e625508 - status: 200 OK - code: 200 - duration: 90.992466ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 41 - host: api.scaleway.com - body: "{\"version\":\"1.34.1\",\"upgrade_pools\":true}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/upgrade - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1632 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.567115Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1632" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f09c4d6d-8adf-45c5-9a1b-cd95222bfadb - status: 200 OK - code: 200 - duration: 97.715252ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.610028Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cb5d7faa-e01c-4b6e-ab7b-6c6f5c27c10a - status: 200 OK - code: 200 - duration: 36.600442ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.610028Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4187bf9a-ecb5-4bc7-9a4e-b22559ff5cda - status: 200 OK - code: 200 - duration: 25.210095ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fdb80122-e227-473d-831a-d2c10d5c75ca - status: 200 OK - code: 200 - duration: 31.65488ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.610028Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa96a7a6-b3d5-46b8-a0f4-746f5054ed8d - status: 200 OK - code: 200 - duration: 27.171997ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1634 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JsSkRiamd6UkdkRFdqaGxUMkZFQ21rM1NrMDRURE5ZVDFsdFlqSkxielp6VjNCTVpWUnFTWFIzU1hvM0t5OUdjbWhCYm1sTEt6ZFVhV2x1T1RaNWNYbHBVVGhhUVd0cldYVkVSakozWldvS1lVODNVemRrVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVZVUXhSamhTY0M5bE5tRTNNVWhuWTJwTmQxUXhXRXh3V0VOVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVV0TloyeHBDa2hTYjNaR09FWk9WMVpMTlZaRlVEUllkVXhRYzB4aE1HOXNWMGxOYkdvd05tODBOM2RSU1dkRE5YWm5ZWGhSTXpBNGRVUnFTRFUzWkcxb01rcDZMMGtLY0VOTk5XcEdRVEk0U3pZek9YbEZSbmRLVFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA0NTgzMzFhLWFkY2YtNDMxMi04YmM2LTBlYjUzYjExMDdiNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ2ZDTzFTRHJHSFZWYWtqeWNrUEdPOGJnVHY2ZmRDZHluUUk4ek9ndUYySjdXYkJkN1hDelo4Z2w=\"}" - headers: - Content-Length: - - "1634" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8db46184-77aa-4daf-80f1-0da90f7190b7 - status: 200 OK - code: 200 - duration: 21.285258ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.610028Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f04fc288-27fd-419b-a2be-a0819fb97963 - status: 200 OK - code: 200 - duration: 79.913813ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b663ff1a-dc80-4fc9-b037-334585a1b5f6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 418 - body: "{\"id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"name\":\"TestAccCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.057069Z\", \"updated_at\":\"2025-10-30T16:18:17.057069Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "418" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85f9f048-5e9b-4479-8107-ef47b6559f92 - status: 200 OK - code: 200 - duration: 30.096536ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1082 - body: "{\"id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"name\":\"test-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"4a162d1b-5c2c-416b-8fc6-4e02a27461be\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"172.18.24.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}, {\"id\":\"bac17832-2469-47c8-94c1-01edb0c37d3a\", \"created_at\":\"2025-10-30T16:18:17.727966Z\", \"updated_at\":\"2025-10-30T16:18:17.727966Z\", \"subnet\":\"fd5f:519c:6d46:4b22::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\"}], \"vpc_id\":\"b663ff1a-dc80-4fc9-b037-334585a1b5f6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1082" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0c899149-f4f0-4085-bc30-284a20804d48 - status: 200 OK - code: 200 - duration: 26.584975ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:30.610028Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7cb294df-a8b9-4c81-9305-cd9b23e9d0c4 - status: 200 OK - code: 200 - duration: 45.00208ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1634 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQwWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JsSkRiamd6UkdkRFdqaGxUMkZFQ21rM1NrMDRURE5ZVDFsdFlqSkxielp6VjNCTVpWUnFTWFIzU1hvM0t5OUdjbWhCYm1sTEt6ZFVhV2x1T1RaNWNYbHBVVGhhUVd0cldYVkVSakozWldvS1lVODNVemRrVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVVZVUXhSamhTY0M5bE5tRTNNVWhuWTJwTmQxUXhXRXh3V0VOVVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVV0TloyeHBDa2hTYjNaR09FWk9WMVpMTlZaRlVEUllkVXhRYzB4aE1HOXNWMGxOYkdvd05tODBOM2RSU1dkRE5YWm5ZWGhSTXpBNGRVUnFTRFUzWkcxb01rcDZMMGtLY0VOTk5XcEdRVEk0U3pZek9YbEZSbmRLVFQwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzA0NTgzMzFhLWFkY2YtNDMxMi04YmM2LTBlYjUzYjExMDdiNi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogQ2ZDTzFTRHJHSFZWYWtqeWNrUEdPOGJnVHY2ZmRDZHluUUk4ek9ndUYySjdXYkJkN1hDelo4Z2w=\"}" - headers: - Content-Length: - - "1634" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95cd67d4-bcf2-4391-9e11-b2fddd28bfbc - status: 200 OK - code: 200 - duration: 75.400602ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1632 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:31.539150Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1632" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bc16bb0-c7a8-4090-91e8-601273e8e577 - status: 200 OK - code: 200 - duration: 71.441782ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1631 - body: "{\"region\":\"fr-par\", \"id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.794627Z\", \"updated_at\":\"2025-10-30T16:18:31.539150Z\", \"type\":\"kapsule\", \"name\":\"test-minimal\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://0458331a-adcf-4312-8bc6-0eb53b1107b6.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.0458331a-adcf-4312-8bc6-0eb53b1107b6.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\", \"commitment_ends_at\":\"2025-10-30T16:18:18.794638Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"3ad2b4b8-8646-4be7-9e25-c1e0d8addf75\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1631" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e32a40f7-13ec-4570-a151-80b388b4119a - status: 200 OK - code: 200 - duration: 21.790046ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5f18cea4-eb6b-4477-a380-1bf330526b6c - status: 404 Not Found - code: 404 - duration: 26.532567ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe5b2f71-ab07-411b-8236-4931179a0a77 - status: 204 No Content - code: 204 - duration: 1.092783828s -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b663ff1a-dc80-4fc9-b037-334585a1b5f6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 985de74b-4c1f-4818-a7d9-6ec4e525258f - status: 204 No Content - code: 204 - duration: 118.676013ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/0458331a-adcf-4312-8bc6-0eb53b1107b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"0458331a-adcf-4312-8bc6-0eb53b1107b6\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 40f3b5c3-6256-46e3-b5c5-bc0d933b0034 - status: 404 Not Found - code: 404 - duration: 27.752737ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d4d7e1aa-480f-4d59-a229-83d72581af29 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"d4d7e1aa-480f-4d59-a229-83d72581af29\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b934524-10bf-46a1-97db-869bc648bfec - status: 404 Not Found - code: 404 - duration: 24.90929ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e3ebe9ec-c0dc-496a-b83c-9695ed9907a7 + status: 200 OK + code: 200 + duration: 727.59925ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 50a469ba-905e-4a4d-aefe-37e5f6972ccb + status: 200 OK + code: 200 + duration: 167.788ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: '{"name":"TestAccCluster_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"f5387075-cd2a-424e-903a-9edb57250c20","name":"TestAccCluster_Basic","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:15.536202Z","updated_at":"2026-01-29T16:42:15.536202Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4e7da7d3-34d0-4981-bd95-16c1cb8300c3 + status: 200 OK + code: 200 + duration: 200.579583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f5387075-cd2a-424e-903a-9edb57250c20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"f5387075-cd2a-424e-903a-9edb57250c20","name":"TestAccCluster_Basic","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:15.536202Z","updated_at":"2026-01-29T16:42:15.536202Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2e332165-a5e6-4dc3-b651-4718bef67c9f + status: 200 OK + code: 200 + duration: 248.799334ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 190 + host: api.scaleway.com + body: '{"name":"test-minimal","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1058 + body: '{"id":"54b52210-48dc-4ca2-a764-ab94ab01410a","name":"test-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"e4d8980a-5180-4e36-88ec-70dbf1295c11","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"},{"id":"e0fc93de-68c2-4d85-9be4-0c038ead52c5","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"fd5f:519c:6d46:b4cd::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"}],"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c7b142cc-8b59-418b-9856-1ce3304ac149 + status: 200 OK + code: 200 + duration: 1.022729625s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1058 + body: '{"id":"54b52210-48dc-4ca2-a764-ab94ab01410a","name":"test-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"e4d8980a-5180-4e36-88ec-70dbf1295c11","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"},{"id":"e0fc93de-68c2-4d85-9be4-0c038ead52c5","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"fd5f:519c:6d46:b4cd::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"}],"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3b250696-fa00-4195-9f59-6f2e47a002ec + status: 200 OK + code: 200 + duration: 353.138334ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 721 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-minimal","description":"terraform basic test cluster","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.34.3","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1548 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:17.623447Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"creating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1548" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cf8c0b32-937e-4c5f-b136-54f6f735577b + status: 200 OK + code: 200 + duration: 511.476833ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1548 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:17.733794Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"creating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1548" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9b4943dc-49d1-496a-b9db-a9f7c11dda67 + status: 200 OK + code: 200 + duration: 106.729292ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 64d5eef3-4d88-45c2-958f-05bb3a0f7df9 + status: 200 OK + code: 200 + duration: 196.60675ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c6c48e3f-4ac8-4f0a-bcc5-60449f825847 + status: 200 OK + code: 200 + duration: 112.016875ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 90479ae0-3302-4b55-9688-f24f1e50fead + status: 200 OK + code: 200 + duration: 224.944709ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2586a356-a842-4cfd-87ea-6eadac39fb37 + status: 200 OK + code: 200 + duration: 170.446417ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3e925d42-d4ff-450e-8cbf-122a9f84186b + status: 200 OK + code: 200 + duration: 214.983917ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f5387075-cd2a-424e-903a-9edb57250c20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"f5387075-cd2a-424e-903a-9edb57250c20","name":"TestAccCluster_Basic","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:15.536202Z","updated_at":"2026-01-29T16:42:15.536202Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ea8538c0-95fb-475c-af34-5608590cec21 + status: 200 OK + code: 200 + duration: 155.072333ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1058 + body: '{"id":"54b52210-48dc-4ca2-a764-ab94ab01410a","name":"test-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"e4d8980a-5180-4e36-88ec-70dbf1295c11","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"},{"id":"e0fc93de-68c2-4d85-9be4-0c038ead52c5","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"fd5f:519c:6d46:b4cd::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"}],"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4db7ad05-0f5c-47d0-b13d-992a846ee942 + status: 200 OK + code: 200 + duration: 199.446083ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 666a658d-2293-427a-a6e4-7373db3a13a2 + status: 200 OK + code: 200 + duration: 176.315709ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e55b4f00-934c-47ff-a1ee-2f80ee088dc7 + status: 200 OK + code: 200 + duration: 252.009083ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f5387075-cd2a-424e-903a-9edb57250c20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"f5387075-cd2a-424e-903a-9edb57250c20","name":"TestAccCluster_Basic","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:15.536202Z","updated_at":"2026-01-29T16:42:15.536202Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6732aed1-2db5-4677-b8de-b36d7113f29e + status: 200 OK + code: 200 + duration: 197.2105ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1058 + body: '{"id":"54b52210-48dc-4ca2-a764-ab94ab01410a","name":"test-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"e4d8980a-5180-4e36-88ec-70dbf1295c11","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"},{"id":"e0fc93de-68c2-4d85-9be4-0c038ead52c5","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"fd5f:519c:6d46:b4cd::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"}],"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 84b5014c-3d69-4509-8ff8-afcc704e2305 + status: 200 OK + code: 200 + duration: 255.464125ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e131327f-df5d-4bb0-b737-719ccf738165 + status: 200 OK + code: 200 + duration: 230.885334ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3869a1ad-1981-421b-83a6-b460c0bcd771 + status: 200 OK + code: 200 + duration: 549.300292ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1589 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:18.068969Z","type":"kapsule","name":"test-minimal","description":"terraform basic test cluster","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1589" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2c9317de-a46c-4bdf-86a0-e6fe28213bac + status: 200 OK + code: 200 + duration: 607.8465ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 609 + host: api.scaleway.com + body: '{"description":"","autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1556 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:27.318041Z","type":"kapsule","name":"test-minimal","description":"","status":"updating","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1556" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 55013225-2592-43dc-8eee-8b3ee2a34d5e + status: 200 OK + code: 200 + duration: 75.249916ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1561 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:27.365265Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.34.3","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":true,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1561" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3e6c45bf-05b2-4536-8e90-fb86bc9c3d68 + status: 200 OK + code: 200 + duration: 98.749125ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 41 + host: api.scaleway.com + body: '{"version":"1.35.0","upgrade_pools":true}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/upgrade + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1557 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:27.486331Z","type":"kapsule","name":"test-minimal","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1557" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6044a67f-4b58-4eb5-b0b9-fefec925a1ce + status: 200 OK + code: 200 + duration: 65.765791ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1557 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:27.486331Z","type":"kapsule","name":"test-minimal","description":"","status":"updating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1557" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - af8c1ad9-b9b8-4056-9fb7-c724d3718360 + status: 200 OK + code: 200 + duration: 23.658333ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a4cd681f-6a9b-4910-8113-d24871c5060c + status: 200 OK + code: 200 + duration: 118.575917ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c75c0ed5-31e6-4c3a-bce3-b531d704deee + status: 200 OK + code: 200 + duration: 35.919417ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e4d896ca-dc35-409b-85d3-4051124521aa + status: 200 OK + code: 200 + duration: 31.007ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e3bf12a5-6c5b-48e3-940d-6b2794230387 + status: 200 OK + code: 200 + duration: 22.371ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 544c4b0e-e7b1-4777-846c-295b2bf08060 + status: 200 OK + code: 200 + duration: 95.007625ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f883b714-e046-4fc4-93f8-a1f4874a4ae0 + status: 200 OK + code: 200 + duration: 22.560917ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f5387075-cd2a-424e-903a-9edb57250c20 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"f5387075-cd2a-424e-903a-9edb57250c20","name":"TestAccCluster_Basic","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:15.536202Z","updated_at":"2026-01-29T16:42:15.536202Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 311480d9-5012-4279-85a2-7dd1c7bf228d + status: 200 OK + code: 200 + duration: 32.214708ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1058 + body: '{"id":"54b52210-48dc-4ca2-a764-ab94ab01410a","name":"test-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"e4d8980a-5180-4e36-88ec-70dbf1295c11","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"},{"id":"e0fc93de-68c2-4d85-9be4-0c038ead52c5","created_at":"2026-01-29T16:42:16.055777Z","updated_at":"2026-01-29T16:42:16.055777Z","subnet":"fd5f:519c:6d46:b4cd::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20"}],"vpc_id":"f5387075-cd2a-424e-903a-9edb57250c20","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2056a8f5-133e-4459-bf8e-84bcb5b8f471 + status: 200 OK + code: 200 + duration: 27.781375ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 36adde56-e996-439c-a281-379ccdb8c094 + status: 200 OK + code: 200 + duration: 26.105375ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8b88f1e0-3d26-46b6-ac8b-3972e6164beb + status: 200 OK + code: 200 + duration: 33.285125ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:30.207834Z","type":"kapsule","name":"test-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9096adc1-e7e8-4d86-917d-47177f3b397f + status: 200 OK + code: 200 + duration: 93.137916ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1632 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbWluaW1hbCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkVsNFRqRnZXRVJVVFRKTlJFVjVUMFJGTWs1RVNYaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EyWXhXRGh3UjJKNVJGTlhRME5rQ25VNGJteGtPRWhPVlc4NFoyeFVPVnAyY0VGclZIaEpWMjR3YzNKeGFUVmxOMlZXYkZkTllrY3ZiWGRSUkROWFFrczJlWEowTDNaRlYxVlplRko1VlV3S1luUlhVbmcxVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2VrSXJiRlowTW01V00xYzJPVTQ1UTJOV1FXWnBXbGxJUlVKNlFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVGdmQyWkNDbFZsWm5kcVJITkRUMll5WjFsaUswTjZLemRpU0hFd2NXdG9WVGhXWVZocVVGRkNZMjV4ZDBOSlIzVnNRVUpCVTBkNFJUSTNNRmxsUXlzeE0wNW1PVEFLY2pSdWNUWldlVE5OZWs5VE4zcDBhMnBzTURrS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzRhYWUyMjU4LTIyNTYtNDFhOC05MGQ1LTFkY2YzYzM2YmJlZi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW1pbmltYWwKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtbWluaW1hbC1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3QtbWluaW1hbApraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdm0yQlJXRUdkY3UwVnJHUTNBY0ZObVI2OElTeWZiQWRWRlZkcUR3bXFnNVJUQUNmejlhT3RtR08="}' + headers: + Content-Length: + - "1632" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6135c0b2-ab82-4070-9b23-b6ba761efbed + status: 200 OK + code: 200 + duration: 97.444167ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1557 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:34.401567Z","type":"kapsule","name":"test-minimal","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1557" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b6af1bf0-684d-496c-9b8d-7791056195bb + status: 200 OK + code: 200 + duration: 107.161958ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1557 + body: '{"region":"fr-par","id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:42:17.623447Z","updated_at":"2026-01-29T16:42:34.401567Z","type":"kapsule","name":"test-minimal","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://4aae2258-2256-41a8-90d5-1dcf3c36bbef.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.4aae2258-2256-41a8-90d5-1dcf3c36bbef.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","commitment_ends_at":"2026-01-29T16:42:17.623455Z","acl_available":true,"iam_nodes_group_id":"aaedcb02-1a7e-4cec-9e77-b2710e331415","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1557" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8ec5cd6f-f068-4e3b-b7a6-db7a0aa105fd + status: 200 OK + code: 200 + duration: 29.52775ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 80f08d51-f535-4b16-b0e1-eb5d65312e2f + status: 404 Not Found + code: 404 + duration: 42.944833ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f38a490b-c08e-4909-9256-18c5128c7d26 + status: 204 No Content + code: 204 + duration: 1.109965s + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f5387075-cd2a-424e-903a-9edb57250c20 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9c5a3fab-378f-4913-b06f-18d9bc9a36bd + status: 204 No Content + code: 204 + duration: 139.375917ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/4aae2258-2256-41a8-90d5-1dcf3c36bbef + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"4aae2258-2256-41a8-90d5-1dcf3c36bbef","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f3df8106-2172-4485-ae49-9351cb3e6304 + status: 404 Not Found + code: 404 + duration: 26.741042ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/54b52210-48dc-4ca2-a764-ab94ab01410a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"54b52210-48dc-4ca2-a764-ab94ab01410a","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:42:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1d10fc87-3057-4166-a155-7e3ecdb9f6d6 + status: 404 Not Found + code: 404 + duration: 23.534084ms diff --git a/internal/services/k8s/testdata/cluster-multicloud.cassette.yaml b/internal/services/k8s/testdata/cluster-multicloud.cassette.yaml index 1b7647dc15..89780f4b8f 100644 --- a/internal/services/k8s/testdata/cluster-multicloud.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-multicloud.cassette.yaml @@ -1,976 +1,70 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 69e481a6-fc09-4d39-8db6-9dc6adfff2aa - status: 200 OK - code: 200 - duration: 32.862517ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 595 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"multicloud\",\"name\":\"test-multicloud\",\"description\":\"\",\"tags\":[],\"version\":\"1.34.1\",\"cni\":\"kilo\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[]}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1515 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:18:17.388391Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1515" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17bc89d9-ea27-4459-b412-f31b8b4c9a89 - status: 200 OK - code: 200 - duration: 507.342315ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1514 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:18:17.388391Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1514" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 24612eaf-158d-4eb6-bde0-09defc96ef69 - status: 200 OK - code: 200 - duration: 102.142572ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c2697e9-c0cc-44d8-b04a-de3bc9793c8a - status: 200 OK - code: 200 - duration: 98.266367ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11e96e64-9c24-455c-ad64-bb15561da759 - status: 200 OK - code: 200 - duration: 21.519759ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1662 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFRqRnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NrWXJPR2RKV2xOTlVWRmpXR0ZzQ2xweFZHSkVVazVLYlVSd1ExUkphVTFSUTJscVkyMUdhVzlxVG5KR1IzVnJWbXBuWWpkM09UZzBZblJQZEVKRFJqUTViRUZ2Vm1rMkwwa3ZSVlYyV2tVS1dYWnZTV2RIY1dwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGRVSmFMMWhsZEhveGJsVnhZMWhvUTJoRVRFSnlaa1F5Y1docVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGbmRYVlBDbEpuTjBaNGVGUTRXazgyVEZBeWJESXdWakpJYWsxcWFGWlVSMnB2V25ocFpHUlROM0JWT0VOSlVVTnJhMGMyVDBwSU5HVlVRbk5LVGs1a2QwNTRXVWNLYkVoYU56SjBURUp1TVhScVZFOTZiMEpSYld4S1FUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8wNmJmZDk1MC0wN2JmLTQwZWQtYTU4Mi05ZDcyMDRmZGRhNmIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW11bHRpY2xvdWQiCiAgICB1c2VyOiB0ZXN0LW11bHRpY2xvdWQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW11bHRpY2xvdWQKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW11bHRpY2xvdWQtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDB6bGZyV2M4WWRFcUUwbDhUVEdYWk9UaGlyWHJNZThHUkY1T2owSExieUFyZ3lRWHhuaE9ZeFNn\"}" - headers: - Content-Length: - - "1662" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0b9aaa9d-d495-4fe2-9398-1cc0d0cbfcfb - status: 200 OK - code: 200 - duration: 125.60669ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e9ea961-792d-4cce-9755-8dd8d82152ae - status: 200 OK - code: 200 - duration: 25.288482ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 269 - host: api.scaleway.com - body: "{\"name\":\"test-multicloud\",\"node_type\":\"DEV1-M\",\"autoscaling\":false,\"size\":1,\"min_size\":1,\"max_size\":1,\"container_runtime\":\"containerd\",\"autohealing\":false,\"tags\":[],\"kubelet_args\":{},\"zone\":\"fr-par-1\",\"root_volume_type\":\"default_volume_type\",\"public_ip_disabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b/pools - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 713 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:20:04.770530Z\", \"name\":\"test-multicloud\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "713" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d90a5791-7082-4edf-9206-4c2d203315e2 - status: 200 OK - code: 200 - duration: 130.19438ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 713 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:20:04.770530Z\", \"name\":\"test-multicloud\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "713" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:20:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 26f728fe-d34a-4777-80ab-1b187e9d1e6e - status: 200 OK - code: 200 - duration: 28.196209ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 711 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:23:45.087626Z\", \"name\":\"test-multicloud\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "711" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e56c6e64-376d-4eef-b08c-d7653af12098 - status: 200 OK - code: 200 - duration: 88.884339ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca8fd944-dd25-4798-bcb6-9cdb92a4f9d5 - status: 200 OK - code: 200 - duration: 26.88613ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 711 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:23:45.087626Z\", \"name\":\"test-multicloud\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "711" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ef34ad5-8436-4934-a47b-55198e7ea4bb - status: 200 OK - code: 200 - duration: 77.497168ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 8430bc40-cdd3-4572-96ad-c2f65aa12b79 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b/nodes?order_by=created_at_asc&page=1&pool_id=8430bc40-cdd3-4572-96ad-c2f65aa12b79&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 618 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"444266c1-7a84-4283-824a-2fae23a4f596\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:22:32.021633Z\", \"updated_at\":\"2025-10-30T16:23:45.072102Z\", \"pool_id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-multicloud-test-multicloud-444266c17a\", \"public_ip_v4\":\"51.158.97.50\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/561b7d5a-8487-432e-b009-242d42760f87\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 11ede52e-96df-4c70-9e2f-288519ab7805 - status: 200 OK - code: 200 - duration: 21.421965ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1983e267-62f1-4e5b-82b2-00993839bf61 - status: 200 OK - code: 200 - duration: 22.14364ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-multicloud-test-multicloud-444266c17a - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-multicloud-test-multicloud-444266c17a&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 27 - body: "{\"total_count\":0, \"ips\":[]}" - headers: - Content-Length: - - "27" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 93fceb7e-6f12-4086-84ea-ff561b15a1e6 - status: 200 OK - code: 200 - duration: 136.186157ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3b57c84d-689a-421f-a2c2-ac4be3db3c16 - status: 200 OK - code: 200 - duration: 25.217219ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 059dd572-01ba-49a5-955e-0b06f253610e - status: 200 OK - code: 200 - duration: 30.448105ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1662 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtbXVsdGljbG91ZCIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFRqRnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaE9NVzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1NrWXJPR2RKV2xOTlVWRmpXR0ZzQ2xweFZHSkVVazVLYlVSd1ExUkphVTFSUTJscVkyMUdhVzlxVG5KR1IzVnJWbXBuWWpkM09UZzBZblJQZEVKRFJqUTViRUZ2Vm1rMkwwa3ZSVlYyV2tVS1dYWnZTV2RIY1dwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVGRVSmFMMWhsZEhveGJsVnhZMWhvUTJoRVRFSnlaa1F5Y1docVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVGbmRYVlBDbEpuTjBaNGVGUTRXazgyVEZBeWJESXdWakpJYWsxcWFGWlVSMnB2V25ocFpHUlROM0JWT0VOSlVVTnJhMGMyVDBwSU5HVlVRbk5LVGs1a2QwNTRXVWNLYkVoYU56SjBURUp1TVhScVZFOTZiMEpSYld4S1FUMDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8wNmJmZDk1MC0wN2JmLTQwZWQtYTU4Mi05ZDcyMDRmZGRhNmIuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1tdWx0aWNsb3VkCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW11bHRpY2xvdWQiCiAgICB1c2VyOiB0ZXN0LW11bHRpY2xvdWQtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW11bHRpY2xvdWQKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW11bHRpY2xvdWQtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IDB6bGZyV2M4WWRFcUUwbDhUVEdYWk9UaGlyWHJNZThHUkY1T2owSExieUFyZ3lRWHhuaE9ZeFNn\"}" - headers: - Content-Length: - - "1662" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 812e0426-7229-4eb5-9676-b37b2039e159 - status: 200 OK - code: 200 - duration: 85.002274ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 711 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:23:45.087626Z\", \"name\":\"test-multicloud\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "711" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 560dffa4-d9b8-49d7-bf50-6f4085f3214c - status: 200 OK - code: 200 - duration: 26.35323ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 8430bc40-cdd3-4572-96ad-c2f65aa12b79 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b/nodes?order_by=created_at_asc&page=1&pool_id=8430bc40-cdd3-4572-96ad-c2f65aa12b79&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 618 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"444266c1-7a84-4283-824a-2fae23a4f596\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:22:32.021633Z\", \"updated_at\":\"2025-10-30T16:23:45.072102Z\", \"pool_id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-multicloud-test-multicloud-444266c17a\", \"public_ip_v4\":\"51.158.97.50\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/561b7d5a-8487-432e-b009-242d42760f87\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6d154a72-57dd-44d7-b03a-6e2bfbe6c7c6 - status: 200 OK - code: 200 - duration: 23.07619ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1547 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:20:02.520617Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1547" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ed882174-c0e8-40d9-909f-bbc08deb74b1 - status: 200 OK - code: 200 - duration: 21.066407ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-multicloud-test-multicloud-444266c17a - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-multicloud-test-multicloud-444266c17a&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 27 - body: "{\"total_count\":0, \"ips\":[]}" - headers: - Content-Length: - - "27" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d61bfd5-178c-4e3e-bd27-e8ab1289ea10 - status: 200 OK - code: 200 - duration: 28.726925ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 714 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:23:50.217972Z\", \"name\":\"test-multicloud\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "714" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b46dbae8-9f31-468f-913f-9acd4c58f114 - status: 200 OK - code: 200 - duration: 45.791312ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 714 - body: "{\"region\":\"fr-par\", \"id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\", \"cluster_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"created_at\":\"2025-10-30T16:20:04.770530Z\", \"updated_at\":\"2025-10-30T16:23:50.217972Z\", \"name\":\"test-multicloud\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"dev1_m\", \"autoscaling\":false, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":false, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"l_ssd\", \"root_volume_size\":40000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"e781706d-7e9d-4c15-b416-5445fc7b0fe5\"}" - headers: - Content-Length: - - "714" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:23:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 09b5b895-53e8-4723-abd1-35fd0d4927b2 - status: 200 OK - code: 200 - duration: 26.682809ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/8430bc40-cdd3-4572-96ad-c2f65aa12b79 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"8430bc40-cdd3-4572-96ad-c2f65aa12b79\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd7b6366-37a2-4751-84d6-75e89006bd84 - status: 404 Not Found - code: 404 - duration: 31.975391ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1551 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:26:02.597406Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1551" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f1f06986-2d90-4055-8694-8af170451354 - status: 200 OK - code: 200 - duration: 147.631488ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1550 - body: "{\"region\":\"fr-par\", \"id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.388390Z\", \"updated_at\":\"2025-10-30T16:26:02.597406Z\", \"type\":\"multicloud\", \"name\":\"test-multicloud\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[], \"cluster_url\":\"https://06bfd950-07bf-40ed-a582-9d7204fdda6b.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.06bfd950-07bf-40ed-a582-9d7204fdda6b.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T16:18:17.388405Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"f1bff4d0-bd86-4358-8c0b-ffcb5e034a38\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1550" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d6dbd1a8-49b9-42d6-9c95-a15f20fa7898 - status: 200 OK - code: 200 - duration: 85.708479ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:27:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ff865e58-6c15-4d80-a72a-a726609949fa - status: 404 Not Found - code: 404 - duration: 22.223519ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/06bfd950-07bf-40ed-a582-9d7204fdda6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"06bfd950-07bf-40ed-a582-9d7204fdda6b\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:27:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50cf0140-1aaa-4b8d-8b90-e86444f2e0e0 - status: 404 Not Found - code: 404 - duration: 22.2395ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 498b3e53-bf06-4e59-b9c5-0073bdd09e95 + status: 200 OK + code: 200 + duration: 163.756416ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 595 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"multicloud","name":"test-multicloud","description":"","tags":[],"version":"1.35.0","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[]}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 207 + body: '{"details":[{"argument_name":"version","help_message":"creating Kosmos clusters with Kubernetes 1.35+ is not yet supported","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' + headers: + Content-Length: + - "207" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5e77ad97-b53a-420c-8ae3-d18783ed263f + status: 400 Bad Request + code: 400 + duration: 88.090041ms diff --git a/internal/services/k8s/testdata/cluster-oidc.cassette.yaml b/internal/services/k8s/testdata/cluster-oidc.cassette.yaml index 96bab724c5..a7850be3b0 100644 --- a/internal/services/k8s/testdata/cluster-oidc.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-oidc.cassette.yaml @@ -1,1272 +1,1304 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 02531850-7c8e-47ff-84d8-4a7ff59ca615 - status: 200 OK - code: 200 - duration: 34.816393ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 128 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigOIDC\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 430 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:17.277990Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "430" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6250f49e-88f5-4597-a241-8023d0f839bd - status: 200 OK - code: 200 - duration: 243.651757ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 430 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:17.277990Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "430" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1eb2c12-5537-431e-83e5-167e3001162a - status: 200 OK - code: 200 - duration: 24.748879ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 187 - host: api.scaleway.com - body: "{\"name\":\"test-oidc\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1079 - body: "{\"id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"name\":\"test-oidc\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"128e7d5f-af74-486d-91d4-30cfa4bb128e\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"172.18.56.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}, {\"id\":\"71f09fd2-c6f0-4d1c-8bb8-8f7c97eb9229\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"fd5f:519c:6d46:2f26::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}], \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1079" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63183b4b-248b-41a1-984e-f5c7e3f3cda7 - status: 200 OK - code: 200 - duration: 1.550613575s -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1079 - body: "{\"id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"name\":\"test-oidc\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"128e7d5f-af74-486d-91d4-30cfa4bb128e\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"172.18.56.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}, {\"id\":\"71f09fd2-c6f0-4d1c-8bb8-8f7c97eb9229\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"fd5f:519c:6d46:2f26::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}], \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1079" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4016975a-d973-4aa6-a188-346954983c70 - status: 200 OK - code: 200 - duration: 30.923268ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 914 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"test-oidc\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"oidc-config\"],\"version\":\"1.34.1\",\"cni\":\"cilium\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\",\"client_id\":\"my-super-id\",\"username_claim\":\"mario\",\"username_prefix\":null,\"groups_claim\":[\"k8s\",\"admin\"],\"groups_prefix\":\"pouf\",\"required_claim\":null},\"apiserver_cert_sans\":[],\"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1658 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.155553Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1658" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4069c64e-d97a-4522-b098-9fc4a5b6a3e5 - status: 200 OK - code: 200 - duration: 272.599547ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1657 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.155553Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1657" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c0b3bb69-5696-4b0b-afc9-c9f77c05f9cc - status: 200 OK - code: 200 - duration: 99.456221ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1698 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.707287Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1698" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 300bb22e-5106-4e7b-bbc3-9450d1a62eb7 - status: 200 OK - code: 200 - duration: 99.553162ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 13b4c48d-08b5-43c2-bdc6-9af550ed4da7 - status: 200 OK - code: 200 - duration: 19.948449ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1698 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.707287Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1698" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8918109a-776e-425b-a0a2-97fca495e44e - status: 200 OK - code: 200 - duration: 27.150195ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1614 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQxWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBWbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JrSjJTVmhuV2s4eVJGTlpXRmRXQ20weU5uTkRZV05CUmpoaU5ESlpaeXRsTUROaWVIWnRhVVJUWkhSRmRtUkJReTlRVTJwQlF6aHlPR2hHTml0UVdWVkdNVkpHUm04NVZVOVJWekJsWlRFS1EwcFZWR1ZKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE1WRlFkRmRXWnpab1ExQjJWaTlhUzJWNlJVdzViSEZQZGxscVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVFMVMzUXZDa05DZUZadGJqZG9la1ZCVHlzM1IyVTNLMFJNZERCdk1UaDVSVXR2TWpsaGRFdzBkMHBTUlVOSlVVUlJhMDVXTkhWNGMxUTJTMlF5VkhFMU4yaHpTVk1LYmpSaVlVSkNLemQxT1hCeE1HNVNNM2x0UmtkWmR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8zZTgyMjBhOC00ZGEyLTRlMDEtYTkzMi01OGEwMzA5NjFiMTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1vaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW9pZGMiCiAgICB1c2VyOiB0ZXN0LW9pZGMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW9pZGMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGJ0TDR2TVZsVldmREZLU3N1ek5meVd0cTA2TFBBMXVtT2F2ZWtubnAwTml6R2NHZjRRM1FGUEE4\"}" - headers: - Content-Length: - - "1614" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 92f06add-bed7-41ba-9300-da0009c5774e - status: 200 OK - code: 200 - duration: 85.171701ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1698 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.707287Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1698" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a596013b-4222-47c8-81a5-ab1915301653 - status: 200 OK - code: 200 - duration: 82.690234ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 430 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:17.277990Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "430" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 48dcbe18-2dc7-4d4f-b633-ac934b789538 - status: 200 OK - code: 200 - duration: 28.018405ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1079 - body: "{\"id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"name\":\"test-oidc\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"128e7d5f-af74-486d-91d4-30cfa4bb128e\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"172.18.56.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}, {\"id\":\"71f09fd2-c6f0-4d1c-8bb8-8f7c97eb9229\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"fd5f:519c:6d46:2f26::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}], \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1079" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 895161f1-7326-4a6e-9a38-9ee9b6f530dd - status: 200 OK - code: 200 - duration: 26.393315ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1698 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.707287Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1698" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c4b44dc7-4777-4c89-a38d-8ccfd9e1cfbe - status: 200 OK - code: 200 - duration: 23.573754ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1614 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQxWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBWbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JrSjJTVmhuV2s4eVJGTlpXRmRXQ20weU5uTkRZV05CUmpoaU5ESlpaeXRsTUROaWVIWnRhVVJUWkhSRmRtUkJReTlRVTJwQlF6aHlPR2hHTml0UVdWVkdNVkpHUm04NVZVOVJWekJsWlRFS1EwcFZWR1ZKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE1WRlFkRmRXWnpab1ExQjJWaTlhUzJWNlJVdzViSEZQZGxscVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVFMVMzUXZDa05DZUZadGJqZG9la1ZCVHlzM1IyVTNLMFJNZERCdk1UaDVSVXR2TWpsaGRFdzBkMHBTUlVOSlVVUlJhMDVXTkhWNGMxUTJTMlF5VkhFMU4yaHpTVk1LYmpSaVlVSkNLemQxT1hCeE1HNVNNM2x0UmtkWmR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8zZTgyMjBhOC00ZGEyLTRlMDEtYTkzMi01OGEwMzA5NjFiMTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1vaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW9pZGMiCiAgICB1c2VyOiB0ZXN0LW9pZGMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW9pZGMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGJ0TDR2TVZsVldmREZLU3N1ek5meVd0cTA2TFBBMXVtT2F2ZWtubnAwTml6R2NHZjRRM1FGUEE4\"}" - headers: - Content-Length: - - "1614" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce0ddf5f-d041-49a6-8263-a34f53faac7e - status: 200 OK - code: 200 - duration: 21.364978ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 430 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDC\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:17.277990Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "430" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 16510848-7e97-4375-9147-15291cf60dff - status: 200 OK - code: 200 - duration: 22.830679ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1079 - body: "{\"id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"name\":\"test-oidc\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"128e7d5f-af74-486d-91d4-30cfa4bb128e\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"172.18.56.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}, {\"id\":\"71f09fd2-c6f0-4d1c-8bb8-8f7c97eb9229\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"fd5f:519c:6d46:2f26::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}], \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1079" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 97339aa6-37d5-4ead-b8c1-b3ac01381f1c - status: 200 OK - code: 200 - duration: 29.472545ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1698 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:19.707287Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://accounts.google.com\", \"client_id\":\"my-super-id\", \"username_claim\":\"mario\", \"username_prefix\":\"\", \"groups_claim\":[\"k8s\", \"admin\"], \"groups_prefix\":\"pouf\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1698" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1ade037-f70b-4cdb-bfdf-e70ea0d68523 - status: 200 OK - code: 200 - duration: 20.218446ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1614 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQxWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBWbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JrSjJTVmhuV2s4eVJGTlpXRmRXQ20weU5uTkRZV05CUmpoaU5ESlpaeXRsTUROaWVIWnRhVVJUWkhSRmRtUkJReTlRVTJwQlF6aHlPR2hHTml0UVdWVkdNVkpHUm04NVZVOVJWekJsWlRFS1EwcFZWR1ZKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE1WRlFkRmRXWnpab1ExQjJWaTlhUzJWNlJVdzViSEZQZGxscVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVFMVMzUXZDa05DZUZadGJqZG9la1ZCVHlzM1IyVTNLMFJNZERCdk1UaDVSVXR2TWpsaGRFdzBkMHBTUlVOSlVVUlJhMDVXTkhWNGMxUTJTMlF5VkhFMU4yaHpTVk1LYmpSaVlVSkNLemQxT1hCeE1HNVNNM2x0UmtkWmR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8zZTgyMjBhOC00ZGEyLTRlMDEtYTkzMi01OGEwMzA5NjFiMTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1vaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW9pZGMiCiAgICB1c2VyOiB0ZXN0LW9pZGMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW9pZGMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGJ0TDR2TVZsVldmREZLU3N1ek5meVd0cTA2TFBBMXVtT2F2ZWtubnAwTml6R2NHZjRRM1FGUEE4\"}" - headers: - Content-Length: - - "1614" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7d05c19d-a2d4-4414-9fc4-8d1dda4df40c - status: 200 OK - code: 200 - duration: 23.977872ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 49 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigOIDCChange\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDCChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:25.480217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4ab9cd68-3c55-4e7c-b2ff-c7fb807e9ce2 - status: 200 OK - code: 200 - duration: 106.160894ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDCChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:25.480217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8aec6337-8029-430a-b89e-34bdb3077bd4 - status: 200 OK - code: 200 - duration: 34.671732ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 629 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\",\"client_id\":\"my-even-more-awesome-id\",\"username_claim\":\"luigi\",\"username_prefix\":\"boo\",\"groups_claim\":[],\"groups_prefix\":\"\",\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.637285Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ce1fd020-34be-401b-858d-fc4d53d179b8 - status: 200 OK - code: 200 - duration: 113.543139ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1681 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.637285Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1681" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e57a240-2e71-497a-9c5f-7294e652b656 - status: 200 OK - code: 200 - duration: 83.889063ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1686 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.764597Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1686" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - bf1a9ef5-39da-4057-b98d-5ceb60c51538 - status: 200 OK - code: 200 - duration: 103.310885ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1686 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.764597Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1686" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c08e2378-a0e8-43c7-86dd-fb585b1af51c - status: 200 OK - code: 200 - duration: 133.382023ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1614 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQxWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBWbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JrSjJTVmhuV2s4eVJGTlpXRmRXQ20weU5uTkRZV05CUmpoaU5ESlpaeXRsTUROaWVIWnRhVVJUWkhSRmRtUkJReTlRVTJwQlF6aHlPR2hHTml0UVdWVkdNVkpHUm04NVZVOVJWekJsWlRFS1EwcFZWR1ZKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE1WRlFkRmRXWnpab1ExQjJWaTlhUzJWNlJVdzViSEZQZGxscVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVFMVMzUXZDa05DZUZadGJqZG9la1ZCVHlzM1IyVTNLMFJNZERCdk1UaDVSVXR2TWpsaGRFdzBkMHBTUlVOSlVVUlJhMDVXTkhWNGMxUTJTMlF5VkhFMU4yaHpTVk1LYmpSaVlVSkNLemQxT1hCeE1HNVNNM2x0UmtkWmR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8zZTgyMjBhOC00ZGEyLTRlMDEtYTkzMi01OGEwMzA5NjFiMTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1vaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW9pZGMiCiAgICB1c2VyOiB0ZXN0LW9pZGMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW9pZGMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGJ0TDR2TVZsVldmREZLU3N1ek5meVd0cTA2TFBBMXVtT2F2ZWtubnAwTml6R2NHZjRRM1FGUEE4\"}" - headers: - Content-Length: - - "1614" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 655f61f1-7cf2-4397-bc89-5042471ea047 - status: 200 OK - code: 200 - duration: 79.832991ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1686 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.764597Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1686" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 63acae1b-6a29-4ddb-93d9-58c6dfeb98d5 - status: 200 OK - code: 200 - duration: 20.330326ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 436 - body: "{\"id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"name\":\"testAccCheckK8SClusterConfigOIDCChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:17.277990Z\", \"updated_at\":\"2025-10-30T16:18:25.480217Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "436" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1ae76056-e228-4de3-8121-823c9db7de1b - status: 200 OK - code: 200 - duration: 24.89329ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1079 - body: "{\"id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"name\":\"test-oidc\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"128e7d5f-af74-486d-91d4-30cfa4bb128e\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"172.18.56.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}, {\"id\":\"71f09fd2-c6f0-4d1c-8bb8-8f7c97eb9229\", \"created_at\":\"2025-10-30T16:18:18.284755Z\", \"updated_at\":\"2025-10-30T16:18:18.284755Z\", \"subnet\":\"fd5f:519c:6d46:2f26::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\"}], \"vpc_id\":\"48f70afa-77e8-4481-aa52-4dadb4e9c6b2\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1079" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5b0441da-50bf-463b-ad23-b82f88adc598 - status: 200 OK - code: 200 - duration: 23.723985ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1686 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:25.764597Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1686" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a0c41c85-5e7a-425c-9eaf-ed61955d8334 - status: 200 OK - code: 200 - duration: 22.79915ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1614 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpZUkVORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpOVkdkNFQxWnZXRVJVVFRGTlZFRjVUMVJGTWsxVVozaFBWbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JrSjJTVmhuV2s4eVJGTlpXRmRXQ20weU5uTkRZV05CUmpoaU5ESlpaeXRsTUROaWVIWnRhVVJUWkhSRmRtUkJReTlRVTJwQlF6aHlPR2hHTml0UVdWVkdNVkpHUm04NVZVOVJWekJsWlRFS1EwcFZWR1ZKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE1WRlFkRmRXWnpab1ExQjJWaTlhUzJWNlJVdzViSEZQZGxscVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1S1FVUkNSMEZwUlVFMVMzUXZDa05DZUZadGJqZG9la1ZCVHlzM1IyVTNLMFJNZERCdk1UaDVSVXR2TWpsaGRFdzBkMHBTUlVOSlVVUlJhMDVXTkhWNGMxUTJTMlF5VkhFMU4yaHpTVk1LYmpSaVlVSkNLemQxT1hCeE1HNVNNM2x0UmtkWmR6MDlDaTB0TFMwdFJVNUVJRU5GVWxSSlJrbERRVlJGTFMwdExTMEsKICAgIHNlcnZlcjogaHR0cHM6Ly8zZTgyMjBhOC00ZGEyLTRlMDEtYTkzMi01OGEwMzA5NjFiMTYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC1vaWRjCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LW9pZGMiCiAgICB1c2VyOiB0ZXN0LW9pZGMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LW9pZGMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LW9pZGMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IGJ0TDR2TVZsVldmREZLU3N1ek5meVd0cTA2TFBBMXVtT2F2ZWtubnAwTml6R2NHZjRRM1FGUEE4\"}" - headers: - Content-Length: - - "1614" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 29bb1d74-2b2c-4eae-a4f3-50ebdc74470b - status: 200 OK - code: 200 - duration: 129.751779ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1682 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:31.823943Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1682" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7426b291-5f4f-45d2-a339-ca840096c847 - status: 200 OK - code: 200 - duration: 107.212888ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1681 - body: "{\"region\":\"fr-par\", \"id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:19.155553Z\", \"updated_at\":\"2025-10-30T16:18:31.823943Z\", \"type\":\"kapsule\", \"name\":\"test-oidc\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"oidc-config\"], \"cluster_url\":\"https://3e8220a8-4da2-4e01-a932-58a030961b16.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.3e8220a8-4da2-4e01-a932-58a030961b16.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"https://gitlab.com\", \"client_id\":\"my-even-more-awesome-id\", \"username_claim\":\"luigi\", \"username_prefix\":\"boo\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\", \"commitment_ends_at\":\"2025-10-30T16:18:19.155560Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"b15c58d7-1d76-456c-bde4-c71308222488\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1681" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1a02c8fc-c023-466a-b046-9be39a96e0e5 - status: 200 OK - code: 200 - duration: 21.611862ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2744d186-f58b-4691-b1e5-b59b18819ce2 - status: 404 Not Found - code: 404 - duration: 17.036805ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eda0b970-a283-4231-a794-7730850339f5 - status: 204 No Content - code: 204 - duration: 1.124860549s -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/48f70afa-77e8-4481-aa52-4dadb4e9c6b2 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cde91ea5-ddb1-4f57-a875-fa88493ef6c0 - status: 204 No Content - code: 204 - duration: 124.733662ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/3e8220a8-4da2-4e01-a932-58a030961b16 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"3e8220a8-4da2-4e01-a932-58a030961b16\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f672de79-50c9-4ee9-a26f-978fcc2f64ff - status: 404 Not Found - code: 404 - duration: 23.695332ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d27635a9-1059-4490-b2e4-4d6dcc9c1a50 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"d27635a9-1059-4490-b2e4-4d6dcc9c1a50\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a199f440-f726-4c8d-abaf-1fdb5c0e48fb - status: 404 Not Found - code: 404 - duration: 32.966953ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e081d088-9ac3-4c7b-849e-a2677834615a + status: 200 OK + code: 200 + duration: 155.290292ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 128 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigOIDC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 419 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDC","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:21.655080Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "419" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 942e6204-9d5f-4ccb-8980-4af6a0c84357 + status: 200 OK + code: 200 + duration: 101.139375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 419 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDC","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:21.655080Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "419" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6ab9701a-0b31-4bf8-a039-04b2c7b02fb1 + status: 200 OK + code: 200 + duration: 104.66ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 187 + host: api.scaleway.com + body: '{"name":"test-oidc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1055 + body: '{"id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","name":"test-oidc","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"c7233681-f73c-4b34-afbe-847d73a0cbf9","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"},{"id":"d4e726f8-3a47-4bb7-af2c-d221b2d08462","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"fd5f:519c:6d46:cda5::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"}],"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1055" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 284c3283-b89d-47cf-9380-29f7dafe542d + status: 200 OK + code: 200 + duration: 634.767208ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1055 + body: '{"id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","name":"test-oidc","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"c7233681-f73c-4b34-afbe-847d73a0cbf9","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"},{"id":"d4e726f8-3a47-4bb7-af2c-d221b2d08462","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"fd5f:519c:6d46:cda5::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"}],"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1055" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7bf47278-8820-4d09-b934-45cb50e298bc + status: 200 OK + code: 200 + duration: 32.358375ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 914 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-oidc","description":"","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"version":"1.35.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":null,"groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":null},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1582 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:22.875319Z","type":"kapsule","name":"test-oidc","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1582" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8cfc29d0-9f11-4a26-9c08-1f87aa004eaa + status: 200 OK + code: 200 + duration: 420.934041ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1582 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:22.875319Z","type":"kapsule","name":"test-oidc","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1582" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 96377c84-c7b3-4726-b944-305764bc3e2a + status: 200 OK + code: 200 + duration: 84.158208ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1623 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:23.371112Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1623" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5a3b6655-f2d5-4624-8e08-559f01b751d3 + status: 200 OK + code: 200 + duration: 86.430333ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6ed79c64-dcb7-480d-a3c3-ce37e08f4782 + status: 200 OK + code: 200 + duration: 24.267833ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1623 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:23.371112Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1623" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8c76461b-d392-4a1d-ae3d-f77016276162 + status: 200 OK + code: 200 + duration: 28.254ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9288dfbe-5ee0-4402-8933-287694fd86e1 + status: 200 OK + code: 200 + duration: 112.610583ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1623 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:23.371112Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1623" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 003c2476-ffc1-4b38-8c12-afec9ccc4526 + status: 200 OK + code: 200 + duration: 87.780458ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 419 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDC","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:21.655080Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "419" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f8286be5-d8ea-4fd2-a196-1144c030cb54 + status: 200 OK + code: 200 + duration: 30.11375ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1055 + body: '{"id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","name":"test-oidc","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"c7233681-f73c-4b34-afbe-847d73a0cbf9","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"},{"id":"d4e726f8-3a47-4bb7-af2c-d221b2d08462","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"fd5f:519c:6d46:cda5::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"}],"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1055" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6bcc3196-9d99-423c-918b-2c8027953532 + status: 200 OK + code: 200 + duration: 31.262583ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1623 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:23.371112Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1623" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 72a11809-02d9-4336-9cdf-ffb5637d0667 + status: 200 OK + code: 200 + duration: 22.642542ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9576b8cc-661d-4c90-ad85-a1ea4cf8056f + status: 200 OK + code: 200 + duration: 22.704958ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 419 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDC","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:21.655080Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "419" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f1e6be87-8b10-4af1-bf0b-037e96f038f9 + status: 200 OK + code: 200 + duration: 25.578917ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1055 + body: '{"id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","name":"test-oidc","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"c7233681-f73c-4b34-afbe-847d73a0cbf9","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"},{"id":"d4e726f8-3a47-4bb7-af2c-d221b2d08462","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"fd5f:519c:6d46:cda5::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"}],"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1055" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - df538087-9015-494d-88ec-d089e78bf188 + status: 200 OK + code: 200 + duration: 27.876083ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1623 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:23.371112Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://accounts.google.com","client_id":"my-super-id","username_claim":"mario","username_prefix":"","groups_claim":["k8s","admin"],"groups_prefix":"pouf","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1623" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 763523c5-0b09-4126-bdd7-0a8e722b6000 + status: 200 OK + code: 200 + duration: 24.861834ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 687d7a40-cf4b-4138-8f67-b727bddcfbd5 + status: 200 OK + code: 200 + duration: 88.220584ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 49 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigOIDCChange"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDCChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:29.836798Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 38f09866-f243-4bb9-ac9c-60b52ecc8b6b + status: 200 OK + code: 200 + duration: 51.905583ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDCChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:29.836798Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3dbd9051-fe86-4bb4-aa5a-a988aa21081f + status: 200 OK + code: 200 + duration: 29.846ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 629 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1607 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.923498Z","type":"kapsule","name":"test-oidc","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1607" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bcc457fe-8864-4056-b935-53843f0f03df + status: 200 OK + code: 200 + duration: 35.3385ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1612 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.956266Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1612" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1e7b9de2-9262-470b-a865-f3c13ef4599e + status: 200 OK + code: 200 + duration: 98.356709ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1612 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.956266Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1612" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c0f03a83-fe03-42c7-9185-022d15c5130a + status: 200 OK + code: 200 + duration: 41.636ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 46061631-765a-44c6-8c8c-ed71e97b6100 + status: 200 OK + code: 200 + duration: 25.042208ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1612 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.956266Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1612" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - be164b23-75ba-48de-baf0-5939c2a0187b + status: 200 OK + code: 200 + duration: 23.824792ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 425 + body: '{"id":"042162cd-dbf2-481d-923d-ea171bed7941","name":"testAccCheckK8SClusterConfigOIDCChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.655080Z","updated_at":"2026-01-29T16:43:29.836798Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "425" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0797ebc7-9709-47c5-9228-0f082baa7b7f + status: 200 OK + code: 200 + duration: 34.889708ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1055 + body: '{"id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","name":"test-oidc","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"c7233681-f73c-4b34-afbe-847d73a0cbf9","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"},{"id":"d4e726f8-3a47-4bb7-af2c-d221b2d08462","created_at":"2026-01-29T16:43:21.882645Z","updated_at":"2026-01-29T16:43:21.882645Z","subnet":"fd5f:519c:6d46:cda5::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941"}],"vpc_id":"042162cd-dbf2-481d-923d-ea171bed7941","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1055" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 228a3883-ffb0-4f91-9cd7-57cdef2e5769 + status: 200 OK + code: 200 + duration: 23.301458ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1612 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.956266Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1612" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 35405791-6cb4-4dc9-b15c-f6324cb3af96 + status: 200 OK + code: 200 + duration: 27.273542ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 72cdb4f7-6f68-40d9-9073-547b3118c06a + status: 200 OK + code: 200 + duration: 91.5875ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1612 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:29.956266Z","type":"kapsule","name":"test-oidc","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1612" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4c515a95-a1b4-4a8c-977d-3517603242bd + status: 200 OK + code: 200 + duration: 88.250375ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1608 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3Qtb2lkYyIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUxNVRXeHZXRVJVVFRKTlJFVjVUMFJGTWs1RVRYbE5iRzkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1QxSk9XVWwyWkVKRFdVdFJiVzgwQ201aVIxTXZVSGxQVnpSQlNISlpkbG8xUlZoeVNWWmtMMlJEWlRKbGFuZHBjVk5tTmpSRFYyWllia2RMUTJndlNrTlpSU3QxUmpkd2MxTnJXRFZHVlVRS09YcEhNelJKVjJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKUlZuTkdUbGd4TjFwWFFsVnZhamhSUmxOU2VYZGhSMlpxV0V0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFelJVRmxDa3hZYUhFemMxZDBURU53ZFd0bmJtRlFOWFZNVkdWT01GZE1SM2QyTW5kSFZFOWtZbkJqU1VOSlFUVnVURlZpWjJ4dU4xcEVXVUpxVDB0UlN6VlROWE1LT0RkQmFtaFViMGg2UkdKT09XcFBNMHAzU213S0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2YwMWM0MzZlLTQ1MDItNDk1ZC05Nzg1LWExZjBkN2VmNDgzNC5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkB0ZXN0LW9pZGMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3Qtb2lkYyIKICAgIHVzZXI6IHRlc3Qtb2lkYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQHRlc3Qtb2lkYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3Qtb2lkYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogS1BhVzRNakw3UWRHdllUWlg2MWJVUGp1WXllR0ZmVWpCNEc4N1RiMzRQa3lMMkRZNG9ET0lhZ3E="}' + headers: + Content-Length: + - "1608" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8fe8d9bf-5fdc-4df3-8cca-c1b6a930c945 + status: 200 OK + code: 200 + duration: 100.246834ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1607 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:31.801930Z","type":"kapsule","name":"test-oidc","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1607" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b07ce249-ed86-4828-baea-b928e3848ff3 + status: 200 OK + code: 200 + duration: 166.62625ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1607 + body: '{"region":"fr-par","id":"f01c436e-4502-495d-9785-a1f0d7ef4834","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:22.875319Z","updated_at":"2026-01-29T16:43:31.801930Z","type":"kapsule","name":"test-oidc","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","oidc-config"],"cluster_url":"https://f01c436e-4502-495d-9785-a1f0d7ef4834.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.f01c436e-4502-495d-9785-a1f0d7ef4834.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"https://gitlab.com","client_id":"my-even-more-awesome-id","username_claim":"luigi","username_prefix":"boo","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","commitment_ends_at":"2026-01-29T16:43:22.875331Z","acl_available":true,"iam_nodes_group_id":"383d4056-2928-42ff-96bc-4324ef9a4922","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1607" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - cf323f70-e4ea-4909-9c32-3c6b7eeed216 + status: 200 OK + code: 200 + duration: 24.992583ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"f01c436e-4502-495d-9785-a1f0d7ef4834","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6b7173fa-23a6-405c-9d6b-6d2a6332fd53 + status: 404 Not Found + code: 404 + duration: 33.6725ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 69835112-3b40-4a31-aaf2-ee763a248115 + status: 204 No Content + code: 204 + duration: 1.180171709s + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/042162cd-dbf2-481d-923d-ea171bed7941 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8ed1152c-7d16-4077-8f2e-d01691f53497 + status: 204 No Content + code: 204 + duration: 120.9835ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/f01c436e-4502-495d-9785-a1f0d7ef4834 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"f01c436e-4502-495d-9785-a1f0d7ef4834","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a8757739-8a68-4aed-86d3-6f2bc9102cfa + status: 404 Not Found + code: 404 + duration: 21.180917ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4f3503c0-d6ec-46c2-ab35-ae47203fb280 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"4f3503c0-d6ec-46c2-ab35-ae47203fb280","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d23b68ea-2025-46f9-8939-745a1aa68374 + status: 404 Not Found + code: 404 + duration: 24.881ms diff --git a/internal/services/k8s/testdata/cluster-private-network.cassette.yaml b/internal/services/k8s/testdata/cluster-private-network.cassette.yaml index ee0b001116..1d48a2001a 100644 --- a/internal/services/k8s/testdata/cluster-private-network.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-private-network.cassette.yaml @@ -1,1763 +1,1795 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - df83139e-75a3-4abd-90ea-189320150b76 - status: 200 OK - code: 200 - duration: 105.029421ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 144 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigPrivateNetworkLinked\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkLinked\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:49:36.934293Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 721965b2-2c02-44fe-8258-fd7c09e905aa - status: 200 OK - code: 200 - duration: 86.79032ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkLinked\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:49:36.934293Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 140ac84b-b1af-4247-b0cd-2adc387ac1c1 - status: 200 OK - code: 200 - duration: 28.434557ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 197 - host: api.scaleway.com - body: "{\"name\":\"k8s-private-network\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 330c77ed-9200-4711-a46f-f0fdb6e74a13 - status: 200 OK - code: 200 - duration: 706.332672ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 563615aa-a3cc-4b2c-bf53-4a42757e4231 - status: 200 OK - code: 200 - duration: 99.475798ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 716 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"k8s-private-network-cluster\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"private_network\"],\"version\":\"1.34.1\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.124299Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 366777af-035a-4ff6-912f-7111355ef175 - status: 200 OK - code: 200 - duration: 335.022469ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.124299Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 45b5b510-749a-40db-98fa-28e99096122c - status: 200 OK - code: 200 - duration: 97.291529ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b85abc4b-6d57-4667-a018-d21b196fe3f2 - status: 200 OK - code: 200 - duration: 95.068337ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 88b7f9b6-4719-4e10-9710-61e03e505db0 - status: 200 OK - code: 200 - duration: 25.563568ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c0b74000-6b62-4792-9135-ff4d8ff20700 - status: 200 OK - code: 200 - duration: 84.546008ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1754 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpPUkd0NlQwWnZXRVJVVFRGTlZFRjVUMVJGTWs1RWEzcFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JtWjRZMDk0YW1WVlNTOW5SakpEQ2paVVJXbGtkemhzUlRSa0t6VlpXWE5hWWxaU1NtMUJTM2xqY0RkUVJuRnpVeXRSU0c1WmFHTm5PSEZ2TjJOWE9GaGFRU3RFZW5aM2VXRnpWVWRPY1ZrS1JrcFhSbUZpYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE9WcFpPV3B0SzI1M05YRTRUVU4wZWxkVlVERnBTVEpWY2l0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVU5S1ZXMXBDa1paVWtkeFZUQjRhMGxOY2pscmFrOUpZWGw2VUZKNlpWVjZSVzByTTFwS1dXZzJhVlpuU1doQlVHdEVNemxaWmtOV1lYbDJTeXRtU25kTVdrNU9iQ3NLYjJOM2RGcDJhekIzU25BdlYwVnBMM1ZpT0hjS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzUzYjEyYjAyLTNlNTMtNDBjNC05ZWRlLTA3ZDBjMmUxOTNkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogRkRkZFpvdE1RNng1VHJpc2V2VGZ6dnJtaWhIY0tCSzF5Y0VQN05sUzN4ZWd3bVA1RjU2NUxncjM=\"}" - headers: - Content-Length: - - "1754" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 44365202-58de-4688-a741-b13bd72c0d58 - status: 200 OK - code: 200 - duration: 83.507289ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 418ba04e-4605-4e2f-baeb-5aa65e56bf21 - status: 200 OK - code: 200 - duration: 21.249863ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 30f968f3-3e36-4e14-9604-84694e98169c - status: 200 OK - code: 200 - duration: 98.136856ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e69242c3-5298-412f-bba1-d90c923ec61e - status: 200 OK - code: 200 - duration: 22.52705ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkLinked\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:49:36.934293Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d1dcc1a0-e08b-4ec6-8916-01b347184123 - status: 200 OK - code: 200 - duration: 31.196741ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6ad00958-ccf7-4b48-ba9e-64a4f622c4bc - status: 200 OK - code: 200 - duration: 105.351016ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f78613a9-d624-4daf-adaa-807778d5cc46 - status: 200 OK - code: 200 - duration: 22.923243ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1754 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpPUkd0NlQwWnZXRVJVVFRGTlZFRjVUMVJGTWs1RWEzcFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JtWjRZMDk0YW1WVlNTOW5SakpEQ2paVVJXbGtkemhzUlRSa0t6VlpXWE5hWWxaU1NtMUJTM2xqY0RkUVJuRnpVeXRSU0c1WmFHTm5PSEZ2TjJOWE9GaGFRU3RFZW5aM2VXRnpWVWRPY1ZrS1JrcFhSbUZpYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE9WcFpPV3B0SzI1M05YRTRUVU4wZWxkVlVERnBTVEpWY2l0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVU5S1ZXMXBDa1paVWtkeFZUQjRhMGxOY2pscmFrOUpZWGw2VUZKNlpWVjZSVzByTTFwS1dXZzJhVlpuU1doQlVHdEVNemxaWmtOV1lYbDJTeXRtU25kTVdrNU9iQ3NLYjJOM2RGcDJhekIzU25BdlYwVnBMM1ZpT0hjS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzUzYjEyYjAyLTNlNTMtNDBjNC05ZWRlLTA3ZDBjMmUxOTNkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogRkRkZFpvdE1RNng1VHJpc2V2VGZ6dnJtaWhIY0tCSzF5Y0VQN05sUzN4ZWd3bVA1RjU2NUxncjM=\"}" - headers: - Content-Length: - - "1754" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2e311d54-5656-4eff-9e6f-0bb0843092c3 - status: 200 OK - code: 200 - duration: 87.422096ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkLinked\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:49:36.934293Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - aac924d5-ce1c-4992-b8d5-a652ba08a3f8 - status: 200 OK - code: 200 - duration: 97.966977ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 369f7860-3a5f-459c-bcf8-174b8db9da01 - status: 200 OK - code: 200 - duration: 25.050535ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:38.618041Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 30efd950-c0ec-4ef4-983c-e8c3d7fe14d3 - status: 200 OK - code: 200 - duration: 88.174017ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1754 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpPUkd0NlQwWnZXRVJVVFRGTlZFRjVUMVJGTWs1RWEzcFBSbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1JtWjRZMDk0YW1WVlNTOW5SakpEQ2paVVJXbGtkemhzUlRSa0t6VlpXWE5hWWxaU1NtMUJTM2xqY0RkUVJuRnpVeXRSU0c1WmFHTm5PSEZ2TjJOWE9GaGFRU3RFZW5aM2VXRnpWVWRPY1ZrS1JrcFhSbUZpYldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVE9WcFpPV3B0SzI1M05YRTRUVU4wZWxkVlVERnBTVEpWY2l0VVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUVU5S1ZXMXBDa1paVWtkeFZUQjRhMGxOY2pscmFrOUpZWGw2VUZKNlpWVjZSVzByTTFwS1dXZzJhVlpuU1doQlVHdEVNemxaWmtOV1lYbDJTeXRtU25kTVdrNU9iQ3NLYjJOM2RGcDJhekIzU25BdlYwVnBMM1ZpT0hjS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzUzYjEyYjAyLTNlNTMtNDBjNC05ZWRlLTA3ZDBjMmUxOTNkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogRkRkZFpvdE1RNng1VHJpc2V2VGZ6dnJtaWhIY0tCSzF5Y0VQN05sUzN4ZWd3bVA1RjU2NUxncjM=\"}" - headers: - Content-Length: - - "1754" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2c6adc58-5b8b-4662-a09e-730812c76824 - status: 200 OK - code: 200 - duration: 20.559878ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1655 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:44.723836Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1655" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9c30f33a-3bb9-459a-82e0-a9105ba742a8 - status: 200 OK - code: 200 - duration: 114.133188ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1654 - body: "{\"region\":\"fr-par\", \"id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:38.124299Z\", \"updated_at\":\"2025-10-30T16:49:44.723836Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://53b12b02-3e53-40c4-9ede-07d0c2e193d1.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.53b12b02-3e53-40c4-9ede-07d0c2e193d1.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"commitment_ends_at\":\"2025-10-30T16:49:38.124309Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"364ee5aa-4824-4704-9445-03a6f66e2c74\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1654" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:49:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 36964592-d089-4c3b-bd0e-f8b65007a4b9 - status: 200 OK - code: 200 - duration: 23.347779ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/53b12b02-3e53-40c4-9ede-07d0c2e193d1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"53b12b02-3e53-40c4-9ede-07d0c2e193d1\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - efbbf3ba-0ea9-4953-83cb-0eed317ff13b - status: 404 Not Found - code: 404 - duration: 23.348631ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 59 - host: api.scaleway.com - body: "{\"name\":\"testAccCheckK8SClusterConfigPrivateNetworkChange\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:50:10.349558Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - affb6902-7ee2-422e-9e07-ee48b4d2b0b3 - status: 200 OK - code: 200 - duration: 89.420066ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:50:10.349558Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 16035806-c4d8-4e97-98f6-65cb96f3f0b7 - status: 200 OK - code: 200 - duration: 117.083445ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 199 - host: api.scaleway.com - body: "{\"name\":\"other-private-network\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1092 - body: "{\"id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"name\":\"other-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b6f3d48a-95ae-4014-bb67-4ef28c5f5ddd\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"a2c953e1-79cb-4fd9-959d-66d5da6200d0\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"fd5f:519c:6d46:e6f0::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1092" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 184afa92-7c55-4247-96c2-ab4c95cb9193 - status: 200 OK - code: 200 - duration: 653.116855ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27aa337b-feab-4c72-ad51-eb8bae6a2692 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1092 - body: "{\"id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"name\":\"other-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b6f3d48a-95ae-4014-bb67-4ef28c5f5ddd\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"a2c953e1-79cb-4fd9-959d-66d5da6200d0\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"fd5f:519c:6d46:e6f0::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1092" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - bd2e7e75-47ca-48d9-8199-3a1a67f1e686 - status: 200 OK - code: 200 - duration: 31.098977ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 716 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"k8s-private-network-cluster\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"private_network\"],\"version\":\"1.34.1\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:11.528102Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1e50fa21-3a38-461d-a492-41b1f6e59ac0 - status: 200 OK - code: 200 - duration: 374.811615ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:11.528102Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d9564bec-d099-4021-af03-ad2ec5d9515d - status: 200 OK - code: 200 - duration: 99.750915ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:12.041679Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4aab958b-420a-4207-a154-adb2d1f0f2ec - status: 200 OK - code: 200 - duration: 93.556569ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d0ef0696-19d5-4f7e-b17f-70067a7b75c1 - status: 200 OK - code: 200 - duration: 32.202648ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:12.041679Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e4685ae3-ad52-4d89-94ed-9e56625bb8fc - status: 200 OK - code: 200 - duration: 88.333587ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1754 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpPVkVGNFRWWnZXRVJVVFRGTlZFRjVUMVJGTWs1VVFYaE5WbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1REWlNOMUZoYld0NWIzTkRWSFJpQ2xGM1pHVjFlRFo1VTFBM1RYTjRXRVZqV1ZwbGFWVjNaWEZoYzBOb01HUjRRbTVSYTI0NWNqQnJjV2xWUVhKVWFFZ3JkMUpQYlZKVlVVWnZaSFJ6UWtNS1oySnRXbEZuVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2IydDZWMlV3VUhKbFMwNTJUR2gwV1hGUVEwNVNWa1ZDUTJSRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFNFZGTktDbWxrUjNwclQyaDRkREJsT1N0RlR6aDRjRFZQYXpJdlduTXZhREZqU1U5MlpVTjFhRGR0U1VOSlFXZFdSemxHWlROUWMySTNhakVyUjBzNGNWZHJWVEVLUlhkQlEyNTJhemxNYUZGT2JGaFhkM0p6TmtVS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzUwZTk3YWM2LWE4ZjEtNGRjYS1iZDI2LTY4MjQ1NGRkMmZkYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogN1ZaTFNsUlNXMUZGVHc5anNabElOVVZ1WkJnWjFkdGIwNUhRemhpYWNSRlZlRWFqWk9id2RydmY=\"}" - headers: - Content-Length: - - "1754" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2acaa493-641a-4dbd-88de-e753ef8dfb9a - status: 200 OK - code: 200 - duration: 98.445134ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:12.041679Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d95b3869-6963-4f29-9c53-121babe02671 - status: 200 OK - code: 200 - duration: 41.162003ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d7250946-a12b-40ab-bc4e-278282555a27 - status: 200 OK - code: 200 - duration: 80.4068ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27aa337b-feab-4c72-ad51-eb8bae6a2692 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1092 - body: "{\"id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"name\":\"other-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b6f3d48a-95ae-4014-bb67-4ef28c5f5ddd\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"a2c953e1-79cb-4fd9-959d-66d5da6200d0\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"fd5f:519c:6d46:e6f0::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1092" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2c23ec9c-10d5-4788-b886-e1713fc2d458 - status: 200 OK - code: 200 - duration: 53.456919ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:12.041679Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e8550f24-8fa7-4d82-9c0b-ec71ce4031ce - status: 200 OK - code: 200 - duration: 68.359187ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 446 - body: "{\"id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"name\":\"testAccCheckK8SClusterConfigPrivateNetworkChange\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:36.934293Z\", \"updated_at\":\"2025-10-30T16:50:10.349558Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":2, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "446" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4fdee245-8014-4626-8d21-3782fac0d7cb - status: 200 OK - code: 200 - duration: 53.533844ms -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1089 - body: "{\"id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"name\":\"k8s-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"5b1099c0-1c68-4463-96e7-6397f7fa4050\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"172.18.36.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"dc5b2e2f-776e-4aab-b24b-6bd5be66ef8d\", \"created_at\":\"2025-10-30T16:49:37.103932Z\", \"updated_at\":\"2025-10-30T16:49:37.103932Z\", \"subnet\":\"fd5f:519c:6d46:ffdf::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"77ef48bf-850d-4548-9481-7700dc862309\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1089" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 99184cb6-52cb-4eec-b712-7b589025b608 - status: 200 OK - code: 200 - duration: 24.75994ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27aa337b-feab-4c72-ad51-eb8bae6a2692 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1092 - body: "{\"id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"name\":\"other-private-network\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"b6f3d48a-95ae-4014-bb67-4ef28c5f5ddd\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}, {\"id\":\"a2c953e1-79cb-4fd9-959d-66d5da6200d0\", \"created_at\":\"2025-10-30T16:50:10.574728Z\", \"updated_at\":\"2025-10-30T16:50:10.574728Z\", \"subnet\":\"fd5f:519c:6d46:e6f0::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\"}], \"vpc_id\":\"43f16bcf-1f19-45c6-a821-0947d76ae39d\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1092" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a0f0d818-99e6-4f65-aa3a-ff0e2829cc61 - status: 200 OK - code: 200 - duration: 26.061332ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1659 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:12.041679Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1659" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - fea89591-4ab4-4886-b8dd-79babf8b87dd - status: 200 OK - code: 200 - duration: 22.776497ms -- id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1754 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYZWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt4VFZSQmVVOVVSVEpPVkVGNFRWWnZXRVJVVFRGTlZFRjVUMVJGTWs1VVFYaE5WbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1REWlNOMUZoYld0NWIzTkRWSFJpQ2xGM1pHVjFlRFo1VTFBM1RYTjRXRVZqV1ZwbGFWVjNaWEZoYzBOb01HUjRRbTVSYTI0NWNqQnJjV2xWUVhKVWFFZ3JkMUpQYlZKVlVVWnZaSFJ6UWtNS1oySnRXbEZuVTJwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2IydDZWMlV3VUhKbFMwNTJUR2gwV1hGUVEwNVNWa1ZDUTJSRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SlFVUkNSa0ZwUlVFNFZGTktDbWxrUjNwclQyaDRkREJsT1N0RlR6aDRjRFZQYXpJdlduTXZhREZqU1U5MlpVTjFhRGR0U1VOSlFXZFdSemxHWlROUWMySTNhakVyUjBzNGNWZHJWVEVLUlhkQlEyNTJhemxNYUZGT2JGaFhkM0p6TmtVS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzUwZTk3YWM2LWE4ZjEtNGRjYS1iZDI2LTY4MjQ1NGRkMmZkYi5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogN1ZaTFNsUlNXMUZGVHc5anNabElOVVZ1WkJnWjFkdGIwNUhRemhpYWNSRlZlRWFqWk9id2RydmY=\"}" - headers: - Content-Length: - - "1754" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 849b78f5-8987-47cf-a833-0f011fb1d1bb - status: 200 OK - code: 200 - duration: 23.445813ms -- id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1655 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:17.913234Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1655" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dc2b3850-16d0-4639-af4a-eb7c1436201b - status: 200 OK - code: 200 - duration: 150.46127ms -- id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1654 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:17.913234Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1654" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2bc61889-1a86-41c8-b8cd-0ae0926d35ac - status: 200 OK - code: 200 - duration: 81.181303ms -- id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5fdc218b-7e3c-47d3-9138-7c80042f4c35 - status: 204 No Content - code: 204 - duration: 1.098837645s -- id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1654 - body: "{\"region\":\"fr-par\", \"id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:50:11.528102Z\", \"updated_at\":\"2025-10-30T16:50:17.913234Z\", \"type\":\"kapsule\", \"name\":\"k8s-private-network-cluster\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"private_network\"], \"cluster_url\":\"https://50e97ac6-a8f1-4dca-bd26-682454dd2fdb.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.50e97ac6-a8f1-4dca-bd26-682454dd2fdb.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\", \"commitment_ends_at\":\"2025-10-30T16:50:11.528110Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"894b9eb3-b34f-46b0-b510-a5027cc391c9\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1654" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 746abc7d-b0fa-4012-99f8-0fcb39128329 - status: 200 OK - code: 200 - duration: 88.052289ms -- id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a5946927-6744-4471-a9c0-8c64b09137b4 - status: 404 Not Found - code: 404 - duration: 26.217115ms -- id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27aa337b-feab-4c72-ad51-eb8bae6a2692 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f20b42ba-ffc1-4a43-8899-b0a695fa9f94 - status: 204 No Content - code: 204 - duration: 1.257197589s -- id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/43f16bcf-1f19-45c6-a821-0947d76ae39d - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 98410e0e-821a-445b-8e2a-8e8a90f84e66 - status: 204 No Content - code: 204 - duration: 111.458608ms -- id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/50e97ac6-a8f1-4dca-bd26-682454dd2fdb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"50e97ac6-a8f1-4dca-bd26-682454dd2fdb\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2cdfe1b7-8cb4-48d9-912b-92b1a8977171 - status: 404 Not Found - code: 404 - duration: 24.590001ms -- id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77ef48bf-850d-4548-9481-7700dc862309 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"77ef48bf-850d-4548-9481-7700dc862309\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f4234f17-31c9-4b00-9c14-ee13808bd851 - status: 404 Not Found - code: 404 - duration: 24.128515ms -- id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27aa337b-feab-4c72-ad51-eb8bae6a2692 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"27aa337b-feab-4c72-ad51-eb8bae6a2692\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:50:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0b3f97c2-7aa8-4d58-83eb-a69a318afc8f - status: 404 Not Found - code: 404 - duration: 28.407816ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 929fdc55-6d8b-4c32-9cd2-9f70b344313c + status: 200 OK + code: 200 + duration: 164.708959ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 144 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigPrivateNetworkLinked","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkLinked","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:43:50.193690Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - baa4655b-ce4e-4fdc-aa32-63534e3972bb + status: 200 OK + code: 200 + duration: 58.129375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkLinked","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:43:50.193690Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c653bc4d-740d-4900-867d-e12650f7af76 + status: 200 OK + code: 200 + duration: 28.960166ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 197 + host: api.scaleway.com + body: '{"name":"k8s-private-network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fd8de701-6120-4751-9a17-0e374b0c1be8 + status: 200 OK + code: 200 + duration: 624.021667ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5003288a-dd6d-4031-b831-b5b25557d8e9 + status: 200 OK + code: 200 + duration: 30.7465ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 716 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.35.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1544 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.148708Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1544" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b1699ec0-5b45-4256-a424-a58afa548267 + status: 200 OK + code: 200 + duration: 254.930417ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1544 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.148708Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1544" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 43ff20f2-d83e-4822-9c93-ff4b167312ab + status: 200 OK + code: 200 + duration: 31.796084ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fde1bdb4-12f5-4b47-9773-620f6723688b + status: 200 OK + code: 200 + duration: 34.239ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1fc89d45-2a72-4913-9610-037c534fe515 + status: 200 OK + code: 200 + duration: 97.395709ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9574ae83-9dd4-49b2-8ae4-4b6f3e17337e + status: 200 OK + code: 200 + duration: 33.065583ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUweFRWWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRURk5WbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FqTXZkWGh0VkRod1NGTk5hakF3Q2tGMlJXeERMMllyY0dvMU0zQk1WUzl0Y2pOckwwVTNjVTl4ZEZOWGVqWnBUWFUzWnpOdVduaEVhbHBrV0VZMVYyNUVkbXgwUVRoVWRHOXhOMGRxYjFFS05sWTFiVXhhTm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFpWVjZVR0ZPUldkV09VOURjRkZIZFhrMlIwWklWekJCVUVwRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVhad09HNWxDbTl1THpsUFMyNUlhVnBXY0hVeGR6bFhTVlJhTVdOSlMwWXhkbTUxVDNGcU0xSk5kRUpCU1dkS1JrMUxiRXgwUTFwdk1taFpTbk14Y21GeFNVRlBjWFVLV0dkWWFVOTJhRkZsWW5KM1JtZFJUR2c0YXowS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2NiZjEzNWYwLTRmYmQtNGQyZC1hNjA0LWEyNTdjZjE3MWFkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogamZrZVJJak9KbllacHcxWU5GYk5ZZTFtMGJGdERyNjZrd0cwYXNiTjJrVlFZeTdSc2hjNVVCT0w="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b43f9b48-5f1b-485a-a8ab-9ebd52ba8b3f + status: 200 OK + code: 200 + duration: 30.900083ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0078b067-5b57-4321-9b28-d375e48f935a + status: 200 OK + code: 200 + duration: 32.656333ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - df76a5a4-9978-44a7-a533-ce214d9a5bc7 + status: 200 OK + code: 200 + duration: 26.04275ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 23f4e560-891f-4dec-bc65-0df60ede7d99 + status: 200 OK + code: 200 + duration: 26.651167ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkLinked","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:43:50.193690Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 27efb439-974b-482b-95f1-732863b66fa0 + status: 200 OK + code: 200 + duration: 29.214583ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7e748d01-623c-47dd-9890-6754dd226c74 + status: 200 OK + code: 200 + duration: 33.412125ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b3597261-369b-49c1-9434-8eb0622d469f + status: 200 OK + code: 200 + duration: 27.642125ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUweFRWWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRURk5WbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FqTXZkWGh0VkRod1NGTk5hakF3Q2tGMlJXeERMMllyY0dvMU0zQk1WUzl0Y2pOckwwVTNjVTl4ZEZOWGVqWnBUWFUzWnpOdVduaEVhbHBrV0VZMVYyNUVkbXgwUVRoVWRHOXhOMGRxYjFFS05sWTFiVXhhTm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFpWVjZVR0ZPUldkV09VOURjRkZIZFhrMlIwWklWekJCVUVwRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVhad09HNWxDbTl1THpsUFMyNUlhVnBXY0hVeGR6bFhTVlJhTVdOSlMwWXhkbTUxVDNGcU0xSk5kRUpCU1dkS1JrMUxiRXgwUTFwdk1taFpTbk14Y21GeFNVRlBjWFVLV0dkWWFVOTJhRkZsWW5KM1JtZFJUR2c0YXowS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2NiZjEzNWYwLTRmYmQtNGQyZC1hNjA0LWEyNTdjZjE3MWFkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogamZrZVJJak9KbllacHcxWU5GYk5ZZTFtMGJGdERyNjZrd0cwYXNiTjJrVlFZeTdSc2hjNVVCT0w="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 78555074-1453-41e7-9b1e-018c2e39326b + status: 200 OK + code: 200 + duration: 24.483458ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkLinked","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:43:50.193690Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bfc5697d-dae0-4b44-99e1-99adcf6fa105 + status: 200 OK + code: 200 + duration: 21.302792ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0be5ef30-7e0a-4117-9cf6-4ceed0cab226 + status: 200 OK + code: 200 + duration: 30.158416ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:51.603946Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f1f01bea-ce11-4a86-811c-58bdec554d74 + status: 200 OK + code: 200 + duration: 42.288375ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkUweFRWWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVRURk5WbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1FqTXZkWGh0VkRod1NGTk5hakF3Q2tGMlJXeERMMllyY0dvMU0zQk1WUzl0Y2pOckwwVTNjVTl4ZEZOWGVqWnBUWFUzWnpOdVduaEVhbHBrV0VZMVYyNUVkbXgwUVRoVWRHOXhOMGRxYjFFS05sWTFiVXhhTm1wUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKVFpWVjZVR0ZPUldkV09VOURjRkZIZFhrMlIwWklWekJCVUVwRVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUVhad09HNWxDbTl1THpsUFMyNUlhVnBXY0hVeGR6bFhTVlJhTVdOSlMwWXhkbTUxVDNGcU0xSk5kRUpCU1dkS1JrMUxiRXgwUTFwdk1taFpTbk14Y21GeFNVRlBjWFVLV0dkWWFVOTJhRkZsWW5KM1JtZFJUR2c0YXowS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovL2NiZjEzNWYwLTRmYmQtNGQyZC1hNjA0LWEyNTdjZjE3MWFkMS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogamZrZVJJak9KbllacHcxWU5GYk5ZZTFtMGJGdERyNjZrd0cwYXNiTjJrVlFZeTdSc2hjNVVCT0w="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ba43c1da-f866-4e20-94e0-400f31d9fbb3 + status: 200 OK + code: 200 + duration: 103.845917ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1580 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:57.855778Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1580" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 20ff4bce-2fef-4fc1-82c0-4f6587d1370f + status: 200 OK + code: 200 + duration: 110.319708ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1580 + body: '{"region":"fr-par","id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:51.148707Z","updated_at":"2026-01-29T16:43:57.855778Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://cbf135f0-4fbd-4d2d-a604-a257cf171ad1.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.cbf135f0-4fbd-4d2d-a604-a257cf171ad1.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","commitment_ends_at":"2026-01-29T16:43:51.148717Z","acl_available":true,"iam_nodes_group_id":"5eb19399-93cd-4174-9879-939e24fefef4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1580" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:43:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 39a5713f-abad-40a4-b89f-8438c9cda14d + status: 200 OK + code: 200 + duration: 30.132041ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/cbf135f0-4fbd-4d2d-a604-a257cf171ad1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"cbf135f0-4fbd-4d2d-a604-a257cf171ad1","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 632ba89d-5487-4827-819c-dcd380d57b32 + status: 404 Not Found + code: 404 + duration: 31.644208ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 59 + host: api.scaleway.com + body: '{"name":"testAccCheckK8SClusterConfigPrivateNetworkChange"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:44:03.047206Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 96cec368-554f-45ef-bc82-2f27f1ed15fb + status: 200 OK + code: 200 + duration: 42.380875ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:44:03.047206Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ca62ddfc-60c4-45f3-8a60-e53b346e3f81 + status: 200 OK + code: 200 + duration: 29.273083ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 199 + host: api.scaleway.com + body: '{"name":"other-private-network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1067 + body: '{"id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","name":"other-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"4304ca34-66bc-49fe-8743-320d4a21cb9d","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"172.17.64.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"73b1119b-2d99-4d4d-aad9-356b6cb2a7e3","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"fd5f:519c:6d46:9efe::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1067" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e765b759-6fcd-488d-8a08-b6bf5e77b3fe + status: 200 OK + code: 200 + duration: 688.671084ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1bfe1f1c-2620-4c81-91b5-22ddcf787a94 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1067 + body: '{"id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","name":"other-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"4304ca34-66bc-49fe-8743-320d4a21cb9d","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"172.17.64.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"73b1119b-2d99-4d4d-aad9-356b6cb2a7e3","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"fd5f:519c:6d46:9efe::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1067" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b3afc3e9-f458-4ffe-8e66-c0101489e385 + status: 200 OK + code: 200 + duration: 35.436792ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 716 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"k8s-private-network-cluster","description":"","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"version":"1.35.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1544 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.060100Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1544" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1601226e-35bb-45e3-aba1-823e21f2baf1 + status: 200 OK + code: 200 + duration: 310.138709ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1544 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.060100Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1544" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a902fcb1-74ff-4cae-9dab-4b3a5ac3a568 + status: 200 OK + code: 200 + duration: 36.59825ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8ca9462a-0dc4-4ebe-b555-d1b306cabb4c + status: 200 OK + code: 200 + duration: 129.920375ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1d836e1e-6416-449e-afe7-54b27183b7b5 + status: 200 OK + code: 200 + duration: 23.420458ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - cf4f1648-ad87-43c6-b3ef-3baae6ea1b8e + status: 200 OK + code: 200 + duration: 34.320292ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkZGM1RrWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVVYZE9SbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EzSXdVazFuY0VsU01rNXZhR3BqQ21FMVFWVmtkRU5ETkVaMlUxQldlVFZzZW5oSVJqWkNOa2RDTWs5bmFGZHNRVVF2VFhWRlMyZzJVMmh1Y0dWd05uQjFSV1p1ZEZsU1EwTklSM1UwYVRZS2FscGxReTl4WldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2QzbDJORmhxUW5wbU4wRTBkMk5qZUZKVGRtRnFjR2QxTW5wcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUW5vMGVVUk1Dbk5sTlhCcVltaEdkekpFY0c4MlJGcG9hVTVrTVVaSWRXMVNPSEpsVG5oNVpWWkNOa05uU1dkVk0wZFVVekpwYW5WcUswZEdWR0pYUjJZeGRqTkZPR2NLYm5BeFRHZzFhR0ZMZFRKWWVqSjJVRTVYU1QwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzI0MTkwM2JkLTdhZmUtNDZhYy1iNGI0LTBmMjM2MTQwODVhNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeU5wSTluRzFqeHphb0U5cWxKN0I5YVoyVlAwdVlNeFdCNWRXN1ZsRnd5ZXNKazNYMmpVclk0aFE="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 929ff272-5d9d-44ca-ab14-f042d1aa6e5c + status: 200 OK + code: 200 + duration: 109.570208ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c6bf96ee-1090-48a5-92f7-028f791f089b + status: 200 OK + code: 200 + duration: 29.716625ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 59e95e6a-835e-40db-afd4-a5f08f8e735e + status: 200 OK + code: 200 + duration: 90.369791ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1bfe1f1c-2620-4c81-91b5-22ddcf787a94 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1067 + body: '{"id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","name":"other-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"4304ca34-66bc-49fe-8743-320d4a21cb9d","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"172.17.64.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"73b1119b-2d99-4d4d-aad9-356b6cb2a7e3","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"fd5f:519c:6d46:9efe::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1067" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 404e39f6-b539-4f7e-8df0-3da6956b809a + status: 200 OK + code: 200 + duration: 21.934458ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e25c48db-5ec9-4c73-b183-011cab71ad13 + status: 200 OK + code: 200 + duration: 22.254417ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 435 + body: '{"id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","name":"testAccCheckK8SClusterConfigPrivateNetworkChange","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.193690Z","updated_at":"2026-01-29T16:44:03.047206Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":2,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "435" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4ffe93ae-479c-408f-b8d9-8c7576c68a4a + status: 200 OK + code: 200 + duration: 32.155166ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1bfe1f1c-2620-4c81-91b5-22ddcf787a94 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1067 + body: '{"id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","name":"other-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"4304ca34-66bc-49fe-8743-320d4a21cb9d","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"172.17.64.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"73b1119b-2d99-4d4d-aad9-356b6cb2a7e3","created_at":"2026-01-29T16:44:03.130468Z","updated_at":"2026-01-29T16:44:03.130468Z","subnet":"fd5f:519c:6d46:9efe::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1067" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5e7f924e-9955-42d9-9908-42d783e67bfb + status: 200 OK + code: 200 + duration: 31.762958ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1066 + body: '{"id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","name":"k8s-private-network","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"2d55fdb0-b991-4f2c-8997-b83e73736d44","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"172.17.120.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"},{"id":"8c10d2bf-67b6-4b6b-acc2-1a0fef02aab4","created_at":"2026-01-29T16:43:50.293523Z","updated_at":"2026-01-29T16:43:50.293523Z","subnet":"fd5f:519c:6d46:b3fb::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc"}],"vpc_id":"8648ff25-d958-4fc0-b7fb-8e42302db6fc","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1066" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4141b6fc-6973-4259-b7e7-3bb7e564963f + status: 200 OK + code: 200 + duration: 30.024ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 91872f6e-e62d-4d9a-9404-818383f1652e + status: 200 OK + code: 200 + duration: 35.259709ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkZGM1RrWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVVYZE9SbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EzSXdVazFuY0VsU01rNXZhR3BqQ21FMVFWVmtkRU5ETkVaMlUxQldlVFZzZW5oSVJqWkNOa2RDTWs5bmFGZHNRVVF2VFhWRlMyZzJVMmh1Y0dWd05uQjFSV1p1ZEZsU1EwTklSM1UwYVRZS2FscGxReTl4WldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2QzbDJORmhxUW5wbU4wRTBkMk5qZUZKVGRtRnFjR2QxTW5wcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUW5vMGVVUk1Dbk5sTlhCcVltaEdkekpFY0c4MlJGcG9hVTVrTVVaSWRXMVNPSEpsVG5oNVpWWkNOa05uU1dkVk0wZFVVekpwYW5WcUswZEdWR0pYUjJZeGRqTkZPR2NLYm5BeFRHZzFhR0ZMZFRKWWVqSjJVRTVYU1QwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzI0MTkwM2JkLTdhZmUtNDZhYy1iNGI0LTBmMjM2MTQwODVhNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeU5wSTluRzFqeHphb0U5cWxKN0I5YVoyVlAwdVlNeFdCNWRXN1ZsRnd5ZXNKazNYMmpVclk0aFE="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 94516204-a1fb-4c70-8f73-32f9784adf28 + status: 200 OK + code: 200 + duration: 25.793792ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1585 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:04.540450Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1585" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b7b6e9f9-6995-4774-80a1-3bc98471d55f + status: 200 OK + code: 200 + duration: 34.189334ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1752 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICBjbHVzdGVyOgogICAgY2VydGlmaWNhdGUtYXV0aG9yaXR5LWRhdGE6IExTMHRMUzFDUlVkSlRpQkRSVkpVU1VaSlEwRlVSUzB0TFMwdENrMUpTVUpYYWtORFFWRkhaMEYzU1VKQlowbENRVVJCUzBKblozRm9hMnBQVUZGUlJFRnFRVlpOVWsxM1JWRlpSRlpSVVVSRmQzQnlaRmRLYkdOdE5Xd0taRWRXZWsxQ05GaEVWRWt5VFVSRmVVOUVSVEpPUkZGM1RrWnZXRVJVVFRKTlJFVjVUMFJGTWs1RVVYZE9SbTkzUmxSRlZFMUNSVWRCTVZWRlFYaE5Td3BoTTFacFdsaEtkVnBZVW14amVrSmFUVUpOUjBKNWNVZFRUVFE1UVdkRlIwTkRjVWRUVFRRNVFYZEZTRUV3U1VGQ1EzSXdVazFuY0VsU01rNXZhR3BqQ21FMVFWVmtkRU5ETkVaMlUxQldlVFZzZW5oSVJqWkNOa2RDTWs5bmFGZHNRVVF2VFhWRlMyZzJVMmh1Y0dWd05uQjFSV1p1ZEZsU1EwTklSM1UwYVRZS2FscGxReTl4WldwUmFrSkJUVUUwUjBFeFZXUkVkMFZDTDNkUlJVRjNTVU53UkVGUVFtZE9Wa2hTVFVKQlpqaEZRbFJCUkVGUlNDOU5RakJIUVRGVlpBcEVaMUZYUWtKU2QzbDJORmhxUW5wbU4wRTBkMk5qZUZKVGRtRnFjR2QxTW5wcVFVdENaMmR4YUd0cVQxQlJVVVJCWjA1SVFVUkNSVUZwUW5vMGVVUk1Dbk5sTlhCcVltaEdkekpFY0c4MlJGcG9hVTVrTVVaSWRXMVNPSEpsVG5oNVpWWkNOa05uU1dkVk0wZFVVekpwYW5WcUswZEdWR0pYUjJZeGRqTkZPR2NLYm5BeFRHZzFhR0ZMZFRKWWVqSjJVRTVYU1QwS0xTMHRMUzFGVGtRZ1EwVlNWRWxHU1VOQlZFVXRMUzB0TFFvPQogICAgc2VydmVyOiBodHRwczovLzI0MTkwM2JkLTdhZmUtNDZhYy1iNGI0LTBmMjM2MTQwODVhNS5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtcHJpdmF0ZS1uZXR3b3JrLWNsdXN0ZXIKICBjb250ZXh0OgogICAgY2x1c3RlcjogIms4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlciIKICAgIHVzZXI6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3RlcgpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IGs4cy1wcml2YXRlLW5ldHdvcmstY2x1c3Rlci1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogeU5wSTluRzFqeHphb0U5cWxKN0I5YVoyVlAwdVlNeFdCNWRXN1ZsRnd5ZXNKazNYMmpVclk0aFE="}' + headers: + Content-Length: + - "1752" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 82000407-ec47-4aa8-bc64-a7af014312a4 + status: 200 OK + code: 200 + duration: 38.032583ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1580 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:11.309132Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1580" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 49b58b5e-dfb6-4cad-b30d-582a7adf0969 + status: 200 OK + code: 200 + duration: 94.709125ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1580 + body: '{"region":"fr-par","id":"241903bd-7afe-46ac-b4b4-0f23614085a5","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:04.060100Z","updated_at":"2026-01-29T16:44:11.309132Z","type":"kapsule","name":"k8s-private-network-cluster","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","private_network"],"cluster_url":"https://241903bd-7afe-46ac-b4b4-0f23614085a5.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.241903bd-7afe-46ac-b4b4-0f23614085a5.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","commitment_ends_at":"2026-01-29T16:44:04.060108Z","acl_available":true,"iam_nodes_group_id":"bf8a8635-f00c-489d-b41a-86c9b01603ec","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1580" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c9d18f16-eb57-4138-873a-e76e748d6b2c + status: 200 OK + code: 200 + duration: 23.305833ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5da1594d-34b9-405b-8678-59194498391b + status: 204 No Content + code: 204 + duration: 1.480715625s + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"241903bd-7afe-46ac-b4b4-0f23614085a5","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 74b5a08d-2aa2-438f-8d44-b9742d0fbe1e + status: 404 Not Found + code: 404 + duration: 38.945083ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1bfe1f1c-2620-4c81-91b5-22ddcf787a94 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9fdbe45a-381f-46b3-be63-40c87232e89c + status: 204 No Content + code: 204 + duration: 1.228617542s + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8648ff25-d958-4fc0-b7fb-8e42302db6fc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1eefcbe0-36fa-4f72-a131-c24e5c8dbc35 + status: 204 No Content + code: 204 + duration: 132.183584ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/241903bd-7afe-46ac-b4b4-0f23614085a5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"241903bd-7afe-46ac-b4b4-0f23614085a5","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - cbd41c77-d24c-4ed8-802a-50b3ab33dc3b + status: 404 Not Found + code: 404 + duration: 23.990125ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7ff5b292-8c78-41af-b45a-bf1d9d813447 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"7ff5b292-8c78-41af-b45a-bf1d9d813447","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f6a379b5-1abe-429c-9009-4063ee8dfbf4 + status: 404 Not Found + code: 404 + duration: 28.648292ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1bfe1f1c-2620-4c81-91b5-22ddcf787a94 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"1bfe1f1c-2620-4c81-91b5-22ddcf787a94","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 23895345-c48d-463a-aa96-f76f2c0c0129 + status: 404 Not Found + code: 404 + duration: 25.299792ms diff --git a/internal/services/k8s/testdata/cluster-type-change.cassette.yaml b/internal/services/k8s/testdata/cluster-type-change.cassette.yaml index 2a198e352a..76950fea46 100644 --- a/internal/services/k8s/testdata/cluster-type-change.cassette.yaml +++ b/internal/services/k8s/testdata/cluster-type-change.cassette.yaml @@ -1,4075 +1,6159 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 85dbbff1-838f-4015-8ff8-e75e76c8fa25 - status: 200 OK - code: 200 - duration: 82.098874ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 119 - host: api.scaleway.com - body: "{\"name\":\"tf-vpc-cool-ardinghelli\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 35879f87-89a1-4bfc-bf2e-1fe0a6c6590d - status: 200 OK - code: 200 - duration: 107.627409ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a5060279-b3fe-4cc1-bd2f-a8e34230c6e6 - status: 200 OK - code: 200 - duration: 102.137346ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 194 - host: api.scaleway.com - body: "{\"name\":\"test-type-change\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f66b0087-59bc-467c-b5fc-2ec7a5535280 - status: 200 OK - code: 200 - duration: 656.143097ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8af17e96-2b6f-401c-8548-1d91f4253678 - status: 200 OK - code: 200 - duration: 110.312703ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 708 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"kapsule\",\"name\":\"test-type-change\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"type-change\"],\"version\":\"1.34.1\",\"cni\":\"cilium\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1604 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:24.563192Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1604" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a8f60150-008f-4d0f-860f-84193bfee453 - status: 200 OK - code: 200 - duration: 429.773379ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:24.563192Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 55d57825-3f8f-45b6-96b7-e844633b95e6 - status: 200 OK - code: 200 - duration: 105.564066ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9447512b-3415-473d-8c37-c2f56f0cd6fe - status: 200 OK - code: 200 - duration: 99.652328ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 54f5abd7-a0a4-49c1-8176-608b3946dd33 - status: 200 OK - code: 200 - duration: 111.22586ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 56ede544-2e77-4412-a498-04842c0412ab - status: 200 OK - code: 200 - duration: 25.546749ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7fdb6456-b392-4aa6-bb84-0cb769ac4418 - status: 200 OK - code: 200 - duration: 78.768634ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 44895ea2-bd3d-40af-95b4-816ebdf4066e - status: 200 OK - code: 200 - duration: 23.640672ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - de92a848-010f-4e30-b2da-1c748304b128 - status: 200 OK - code: 200 - duration: 97.860535ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2f040947-6e8b-4cab-8f6e-5e4ae4ff214b - status: 200 OK - code: 200 - duration: 89.365647ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a838e291-910e-43e6-b980-f6ad391ad047 - status: 200 OK - code: 200 - duration: 28.744468ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a3c2427a-1116-4e57-a804-c5057377caea - status: 200 OK - code: 200 - duration: 100.157728ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 19578cb0-10e2-48e7-bf05-1e0c15e202bd - status: 200 OK - code: 200 - duration: 121.07741ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b562e1e2-695c-4897-9826-07aa39f93213 - status: 200 OK - code: 200 - duration: 88.474881ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6c9e053b-ac85-48c6-bbb4-53f83d6d04de - status: 200 OK - code: 200 - duration: 102.166478ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 585ab3b9-54be-4364-a979-e501ff4fa39d - status: 200 OK - code: 200 - duration: 97.432148ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1004 - body: "{\"cluster_types\":[{\"name\":\"kapsule\", \"availability\":\"available\", \"max_nodes\":150, \"commitment_delay\":\"0s\", \"sla\":0, \"resiliency\":\"standard\", \"memory\":4000000000, \"dedicated\":false, \"audit_logs_supported\":false, \"max_etcd_size\":55000000}, {\"name\":\"kapsule-dedicated-4\", \"availability\":\"available\", \"max_nodes\":250, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":4000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":4}" - headers: - Content-Length: - - "1004" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2ca848fa-79fe-40b2-a282-3bc85d7c3ce2 - status: 200 OK - code: 200 - duration: 92.664235ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1004 - body: "{\"cluster_types\":[{\"name\":\"kapsule\", \"availability\":\"available\", \"max_nodes\":150, \"commitment_delay\":\"0s\", \"sla\":0, \"resiliency\":\"standard\", \"memory\":4000000000, \"dedicated\":false, \"audit_logs_supported\":false, \"max_etcd_size\":55000000}, {\"name\":\"kapsule-dedicated-4\", \"availability\":\"available\", \"max_nodes\":250, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":4000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":4}" - headers: - Content-Length: - - "1004" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a1574cb0-f2f2-48d4-994e-f1b9acb30a05 - status: 200 OK - code: 200 - duration: 88.715434ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1644 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:25.035179Z\", \"type\":\"kapsule\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-10-30T17:32:24.563206Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1644" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1f251a2a-51b2-497a-9d09-9b57b579bb28 - status: 200 OK - code: 200 - duration: 22.355003ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 30 - host: api.scaleway.com - body: "{\"type\":\"kapsule-dedicated-4\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/set-type - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1652 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:31.687149Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1652" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f475c3c0-c523-40d1-90c8-4aa96db768a7 - status: 200 OK - code: 200 - duration: 216.570178ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1651 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:32:31.687149Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1651" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:32:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ae23a4af-b06e-48ee-a81b-a4beb2874c23 - status: 200 OK - code: 200 - duration: 23.976654ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:36:04.999268Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:36:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 89c8b6b8-ac14-4a0d-9ecd-333b28ade83f - status: 200 OK - code: 200 - duration: 195.512594ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:36:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 137981de-a04a-4253-bb85-493c5529ddd8 - status: 200 OK - code: 200 - duration: 31.137752ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 592 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1652 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:36:06.246915Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1652" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:36:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0b4b1be1-80ab-4fa2-90ae-1f5340c5123c - status: 200 OK - code: 200 - duration: 240.491787ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1651 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:36:06.246915Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1651" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:36:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 14c2dd5b-9db7-4102-84ad-aae6c8a766bd - status: 200 OK - code: 200 - duration: 105.535342ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 14f33339-6ccd-4a33-b789-de34a58f96ee - status: 200 OK - code: 200 - duration: 98.844183ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 731dc744-089d-4f41-b7e3-0fb482318338 - status: 200 OK - code: 200 - duration: 32.909432ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f48a7158-a0e6-498c-b587-57391ad8730f - status: 200 OK - code: 200 - duration: 81.691064ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8c1f5a4b-168e-4abd-aabb-8055389b483e - status: 200 OK - code: 200 - duration: 23.625191ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 03de3a7d-bf80-481c-afa2-0222e3d859ac - status: 200 OK - code: 200 - duration: 30.624535ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6bde4a7d-df23-40b1-87ea-f31acea585b3 - status: 200 OK - code: 200 - duration: 83.111916ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - fb105a39-1b39-47c9-ad23-334a4cf5b785 - status: 200 OK - code: 200 - duration: 88.885875ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 66ac3e46-1008-4284-bdf1-a330b34612f5 - status: 200 OK - code: 200 - duration: 22.585496ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9aa60da3-b25a-420d-b676-bdb155dbb99c - status: 200 OK - code: 200 - duration: 110.465449ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8008ffd6-d480-4894-b0fe-54bc85fe94cf - status: 200 OK - code: 200 - duration: 29.147267ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 60f51f70-e0de-43d4-b84b-c33e728bce17 - status: 200 OK - code: 200 - duration: 26.747062ms -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 406d8548-410c-46ab-b513-2a65d2322cdc - status: 200 OK - code: 200 - duration: 22.640149ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 535 - body: "{\"cluster_types\":[{\"name\":\"kapsule-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":2}" - headers: - Content-Length: - - "535" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b7d665a6-da5d-46ab-b1b0-00604f932194 - status: 200 OK - code: 200 - duration: 110.538236ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 535 - body: "{\"cluster_types\":[{\"name\":\"kapsule-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"kapsule-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":2}" - headers: - Content-Length: - - "535" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ec75682d-eaa5-4133-9c4d-da05ef4f9b04 - status: 200 OK - code: 200 - duration: 78.805417ms -- id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:41.107541Z\", \"type\":\"kapsule-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:32:31.784094Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 08d496cf-51f7-447a-86e1-a1956f2cf4d0 - status: 200 OK - code: 200 - duration: 93.601863ms -- id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 30 - host: api.scaleway.com - body: "{\"type\":\"kapsule-dedicated-8\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/set-type - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1652 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:46.928957Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1652" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f4881f12-5829-47d5-a478-4422239d6e16 - status: 200 OK - code: 200 - duration: 342.232916ms -- id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1651 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:43:46.928957Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1651" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:43:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e4d92506-df63-46a0-b434-9f63abf5a3a4 - status: 200 OK - code: 200 - duration: 26.662323ms -- id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:45:26.329317Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:45:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e2a5cebc-2cb0-4ac9-bb81-13f77c553bc2 - status: 200 OK - code: 200 - duration: 85.461421ms -- id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:45:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - aa222247-c23c-4649-a920-1da2a37be9b4 - status: 200 OK - code: 200 - duration: 33.110871ms -- id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 592 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1652 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:45:29.192058Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1652" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:45:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 617d152e-c125-4635-82d1-7e4e847b91f7 - status: 200 OK - code: 200 - duration: 116.021471ms -- id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1651 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:45:29.192058Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1651" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:45:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f743c3f2-1604-463f-9eb1-d7d23e72e8d2 - status: 200 OK - code: 200 - duration: 20.08869ms -- id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:12.180252Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f9976466-2aa2-4d10-a4c8-f7b917438bf4 - status: 200 OK - code: 200 - duration: 110.741923ms -- id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:12.180252Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 71bf0ee7-f10f-4279-9347-cd4ac6019faa - status: 200 OK - code: 200 - duration: 91.843742ms -- id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b4dd42e7-27a2-45b1-82b8-3109cc52fc8a - status: 200 OK - code: 200 - duration: 99.619228ms -- id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:12.180252Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 03057762-24a9-4cd9-93bd-b4836bd258fe - status: 200 OK - code: 200 - duration: 18.582078ms -- id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 017225f2-92d5-43bf-b784-68eaff6cd45d - status: 200 OK - code: 200 - duration: 42.320581ms -- id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e24c8d30-b4b0-4c9e-b7d6-7b2be0ecac6f - status: 200 OK - code: 200 - duration: 27.011993ms -- id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:12.180252Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7d11e95f-b702-40a4-a359-2b43efc49ab7 - status: 200 OK - code: 200 - duration: 24.794743ms -- id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 46c94ebd-4055-497a-8364-d77d94ba84f6 - status: 200 OK - code: 200 - duration: 89.345406ms -- id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1648 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:12.180252Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1648" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 46ba27c0-1aaf-4da7-925a-47603c104e98 - status: 200 OK - code: 200 - duration: 24.656904ms -- id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1086 - body: "{\"id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"name\":\"test-type-change\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"07123eac-9369-4f95-8d04-60230299a581\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"172.18.20.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}, {\"id\":\"06551711-cf24-46d0-a1c2-1fe06e2adb94\", \"created_at\":\"2025-10-30T17:32:23.479384Z\", \"updated_at\":\"2025-10-30T17:32:23.479384Z\", \"subnet\":\"fd5f:519c:6d46:c7fd::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\"}], \"vpc_id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1086" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6a8a199f-cc12-48c7-a78e-98f58a99bb45 - status: 200 OK - code: 200 - duration: 31.978479ms -- id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 421 - body: "{\"id\":\"abc9cb6f-35f4-4119-8a61-418592c48d78\", \"name\":\"tf-vpc-cool-ardinghelli\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:23.250212Z\", \"updated_at\":\"2025-10-30T17:32:23.250212Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "421" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - b32f5f9f-c2d6-4bd0-98ff-b2032c502c9e - status: 200 OK - code: 200 - duration: 33.205301ms -- id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROTmVrbDVUa1p2V0VSVVRURk5WRUY1VDFSRk0wMTZTWGxPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUVkptU2s1SE1DOXFWVTFGWml0NUNsbHpUbXQxTUhCWVNXeDNkbmxKU2pocFQyNVBRMWgwV0dsQ2JYbzVhbWx4UzJKSk5IZzFWakJ2U0RCeFp6Wmtka1F4Y2paYVkwWXJRa3hITm05bFUwWUtjVFV3ZW5adVQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlWGRpWTIxcldUZ3pNV0pqVkV4Q1FYZFZXbTlCWmtWQlRuTkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRjBXR2hDQ25ObmJsSlVWVk13VW5BMlEyRmpRV0ZXVWpBeFoyNTFWMGR2Um1abU9FWlFUbGRCUlVaQ2MwTkpRVmhQZW1zNE9WUkJiSFJhYW5CdU5YUTVkSEJ2U1VvS2JVb3hkWFpITkdKMWFrNURWbXd5T0ZGbVlrY0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMTEyYTQ1NC1mNjM0LTQ5NTAtODA5NS1lMTgzMTQwMGE0ODcuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogbE0zUVdtOFRiejRHY0x0SmpwWUVDVnJZREVtZmtWUDF2cnN0TDhIVzFZeFYyRndXWEphRG9paDk=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4631c0b3-27b0-4edd-8d7d-6e4a471e46bd - status: 200 OK - code: 200 - duration: 21.576637ms -- id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 286 - body: "{\"cluster_types\":[{\"name\":\"kapsule-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":1}" - headers: - Content-Length: - - "286" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 44d353ac-3feb-4a9d-84e9-e8a260b1789e - status: 200 OK - code: 200 - duration: 122.733569ms -- id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1652 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:13.809487Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1652" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 875d292f-52e6-4cea-9bd6-f4b37a35896b - status: 200 OK - code: 200 - duration: 105.473631ms -- id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1651 - body: "{\"region\":\"fr-par\", \"id\":\"c112a454-f634-4950-8095-e1831400a487\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:32:24.563192Z\", \"updated_at\":\"2025-10-30T17:48:13.809487Z\", \"type\":\"kapsule-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c112a454-f634-4950-8095-e1831400a487.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c112a454-f634-4950-8095-e1831400a487.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"15f251cc-3925-4375-85b3-2e1ed1458f44\", \"commitment_ends_at\":\"2025-11-29T17:43:47.055291Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"c3a892cd-47d5-4b38-802a-1d3656933691\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1651" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c6719517-0187-48ce-b2f4-2f69b006161a - status: 200 OK - code: 200 - duration: 100.327767ms -- id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c112a454-f634-4950-8095-e1831400a487 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"c112a454-f634-4950-8095-e1831400a487\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7341bd04-fce9-46d0-ac9b-6e1497570561 - status: 404 Not Found - code: 404 - duration: 26.314345ms -- id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/15f251cc-3925-4375-85b3-2e1ed1458f44 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2d24a466-e500-4992-91e5-0167bb16b012 - status: 204 No Content - code: 204 - duration: 1.124239084s -- id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/abc9cb6f-35f4-4119-8a61-418592c48d78 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ae0ea824-a82d-4b4d-819f-6051e606e522 - status: 204 No Content - code: 204 - duration: 250.007868ms -- id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 661 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"multicloud-dedicated-4\",\"name\":\"test-type-change\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"type-change\"],\"version\":\"1.34.1\",\"cni\":\"kilo\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[]}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1583 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:48:20.702469Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1583" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f1adf67d-a0a5-4f4e-ac7d-7c5a09d3536a - status: 200 OK - code: 200 - duration: 293.356489ms -- id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1582 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:48:20.702469Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1582" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:48:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 050caab1-5cbc-4479-b38b-dc1ee7a73e7e - status: 200 OK - code: 200 - duration: 87.369293ms -- id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 46fb0fce-b243-481d-b257-6a56ef08d40e - status: 200 OK - code: 200 - duration: 100.659252ms -- id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ff864067-0324-4df0-a800-c03474957db5 - status: 200 OK - code: 200 - duration: 27.557999ms -- id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 369b2817-fc21-4c87-9b72-90d9e7434af6 - status: 200 OK - code: 200 - duration: 96.189373ms -- id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a3e73184-5acb-4491-9710-b0469d51034e - status: 200 OK - code: 200 - duration: 78.846596ms -- id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4b15f5c3-333c-4e07-b5cb-032511d74eb0 - status: 200 OK - code: 200 - duration: 22.785252ms -- id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - bd526c63-9486-4d52-9e10-9f24a52bd4ec - status: 200 OK - code: 200 - duration: 82.934447ms -- id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 63e39d95-8625-45f6-9d62-a8a42a8a7282 - status: 200 OK - code: 200 - duration: 20.590063ms -- id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 33d58689-5ee4-4b35-a2e7-9fd76af8d03c - status: 200 OK - code: 200 - duration: 31.896873ms -- id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 541 - body: "{\"cluster_types\":[{\"name\":\"multicloud-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"multicloud-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":2}" - headers: - Content-Length: - - "541" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 759dda77-5380-408a-975b-20a0fe5c9fe6 - status: 200 OK - code: 200 - duration: 180.723103ms -- id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 541 - body: "{\"cluster_types\":[{\"name\":\"multicloud-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"multicloud-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":2}" - headers: - Content-Length: - - "541" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6c788e25-0c5d-4f1b-98a6-685de4e59f5c - status: 200 OK - code: 200 - duration: 140.659734ms -- id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:37.258653Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:48:20.702476Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3b96f3f4-9e56-4859-ada8-e3d87322de10 - status: 200 OK - code: 200 - duration: 30.276852ms -- id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 33 - host: api.scaleway.com - body: "{\"type\":\"multicloud-dedicated-8\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/set-type - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:39.823350Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 36fb37cf-653d-4af1-966f-33a5d90286b1 - status: 200 OK - code: 200 - duration: 271.002005ms -- id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:50:39.823350Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:50:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1c70afef-482a-4d8b-9fa9-ec06302fa9c3 - status: 200 OK - code: 200 - duration: 27.701008ms -- id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:52:11.588108Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:52:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4a9e22a1-6ba9-4c59-8d02-414258885123 - status: 200 OK - code: 200 - duration: 121.349564ms -- id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:52:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d0dc9167-b635-451a-a92f-fc0b5dd8c9ea - status: 200 OK - code: 200 - duration: 89.605856ms -- id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 592 - host: api.scaleway.com - body: "{\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":null,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":null},\"auto_upgrade\":{\"enable\":null,\"maintenance_window\":null},\"open_id_connect_config\":{\"issuer_url\":null,\"client_id\":null,\"username_claim\":null,\"username_prefix\":null,\"groups_claim\":null,\"groups_prefix\":null,\"required_claim\":null}}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:52:12.166496Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:52:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c13972bc-a850-4dd7-bc4f-09b015c25cb8 - status: 200 OK - code: 200 - duration: 110.151013ms -- id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:52:12.166496Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"updating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:52:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0b995cfc-34ed-4b36-ab0c-b7f393c68ba7 - status: 200 OK - code: 200 - duration: 22.013574ms -- id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:16.320875Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 99ef2089-f467-424a-81c5-a96026c5fd94 - status: 200 OK - code: 200 - duration: 75.447413ms -- id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:16.320875Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dc79d61c-5be4-4ecd-b47d-062dbc19afae - status: 200 OK - code: 200 - duration: 22.000459ms -- id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - baab4300-cde6-459d-ba81-15d3e879a467 - status: 200 OK - code: 200 - duration: 86.656069ms -- id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:16.320875Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - df3501df-05b7-437b-8a91-a01b79cda06a - status: 200 OK - code: 200 - duration: 21.683123ms -- id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:16.320875Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9457c6f5-a9c2-46b7-bb2d-aad7999b1949 - status: 200 OK - code: 200 - duration: 84.336594ms -- id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5cfd54f7-abfa-4cdc-9c7e-ba92becc9030 - status: 200 OK - code: 200 - duration: 123.961746ms -- id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:16.320875Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c0561325-df02-45c4-b3cc-99cbe3de7961 - status: 200 OK - code: 200 - duration: 19.393223ms -- id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1670 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1JHZDVUVVp2V0VSVVRURk5WRUY1VDFSRk0wNUVaM2xOUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUMlEwWjNka2FETkxNekpxYmtkeUNtdzNSbmxFT0ZRMlNIZFZaVFJoYm1WT1F6SkpVREJPYkhONGFFVkpWM2dyVVRCRVZFNHhjWGhMWmtob2JVNVpjMDVMU1hCdFJ6Um1VbGtyYTJSbmMzY0tjVU5xZWtvNVYycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVZbVU1ZUhCVlN6RlZUMk5ZWVhoQk4wOXZSemRaU0M4NVpreFVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRm5WazVsQ21OMVluQjFPREZOTWpaM2NVaEdLek51Tm5sS1YyVmhiQzh6TkdOdE1FUldORWQ2Um5FM2MwTkpVVU5JYVdWNE1FRjVaVWxZY1Vac1YxcHpkVUZvVlZRS2FpdDJVV2xJVEVKcVQwaEJWVkJ5UVU1bWJGQllRVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vNjQ4MDNkNWQtYWMwYS00NWZhLTgyZTYtZTBmMDM3MjY2ZGFhLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtdHlwZS1jaGFuZ2UKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRlc3QtdHlwZS1jaGFuZ2UiCiAgICB1c2VyOiB0ZXN0LXR5cGUtY2hhbmdlLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IG5XdklWYlQ4TkJ1cEttdE9XZ3VPRXVYYjZHUU9RdHlSczR5UHhCQ0dQNWlqY2tnQlFaRDNSRTRV\"}" - headers: - Content-Length: - - "1670" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 609cde33-ac3a-4560-8080-76560a14b024 - status: 200 OK - code: 200 - duration: 26.38947ms -- id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 289 - body: "{\"cluster_types\":[{\"name\":\"multicloud-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":1}" - headers: - Content-Length: - - "289" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 602cb568-0234-4c71-80c3-e53ecd29aa78 - status: 200 OK - code: 200 - duration: 90.535423ms -- id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:20.555279Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c03d700e-5591-42df-a403-bcd4f2409bdf - status: 200 OK - code: 200 - duration: 122.884082ms -- id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:48:20.702469Z\", \"updated_at\":\"2025-10-30T17:54:20.555279Z\", \"type\":\"multicloud-dedicated-8\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://64803d5d-ac0a-45fa-82e6-e0f037266daa.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.64803d5d-ac0a-45fa-82e6-e0f037266daa.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:50:39.929757Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1287e4f9-481a-4b20-b218-d1545d3eff3c\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0ce51894-98b6-4be7-bf47-115b3576b1b5 - status: 200 OK - code: 200 - duration: 25.630605ms -- id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/64803d5d-ac0a-45fa-82e6-e0f037266daa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"64803d5d-ac0a-45fa-82e6-e0f037266daa\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9fd7c8d1-459c-46d7-bbb2-b09e65a8c17b - status: 404 Not Found - code: 404 - duration: 35.577242ms -- id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 661 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"multicloud-dedicated-4\",\"name\":\"test-type-change\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"type-change\"],\"version\":\"1.34.1\",\"cni\":\"kilo\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[]}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1583 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:54:26.000572Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1583" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a8112eb5-44e2-4c5b-afd6-214ada279565 - status: 200 OK - code: 200 - duration: 332.469924ms -- id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1582 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:54:26.000572Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1582" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:54:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 16192d7b-09d7-477b-8410-294ec6e78b04 - status: 200 OK - code: 200 - duration: 96.576318ms -- id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:42.676163Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f7281b77-e7f9-462d-a2ea-dc71bfd38ba6 - status: 200 OK - code: 200 - duration: 108.281051ms -- id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:42.676163Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 96d38a48-4d57-4937-ab4f-8d95179fc54a - status: 200 OK - code: 200 - duration: 23.336254ms -- id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1ZGRjVUbXh2V0VSVVRURk5WRUY1VDFSRk0wNVVVWGxPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTV1E0TmxsdFZrdFpZUzgzVEcxcUNtOUhWR1pJT1hOalpFdzViU3RsVEZGcmMxTXJVVFZZU214c1R6WjBja0phWVdNeFQzcEdaVVJJV0VnMmVTc3haWEJVVGt0a04xSkhjMGhCWmtwbFFuZ0tVV0Z4WVVac1QycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRiR1ZQVkVsWU1rWnpSMk53ZGpaVU1rcEZSVXRySzAxaWMxZHFRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFtZzBSVTFaQ25odE4xTkxkbXMyWTNGNllXZ3hhbFF2VUVSSlVISlJUbmhqU1hOaVZtWXJSRTV1YkRWblNXaEJVSFp5T1c4dlJHbFFjV1l5VVVwcmVGZDNTV3QwUVZZS1FrSlRhWFJUVkVrNFlsUjNjSGhvUWxwalIwb0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMzY4NDMyZC1iOGEyLTRlMzctYTA4My0xNDhkN2M3Njc4NjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdHhZemh3ZUU5enVMNk1rRHM4MGphc3lKSjBDRXUxMFBrZDVWQ1RtYVM0d0NVejZrWVlwWFRpdjQ=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - bc670db3-c5c0-4672-a254-692b7ee127fb - status: 200 OK - code: 200 - duration: 75.175532ms -- id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:42.676163Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0ca94862-681e-418d-a577-56e45fa468e9 - status: 200 OK - code: 200 - duration: 80.614816ms -- id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:42.676163Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 42af8387-d0ec-419f-924a-f9ec48fa3225 - status: 200 OK - code: 200 - duration: 27.024649ms -- id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1ZGRjVUbXh2V0VSVVRURk5WRUY1VDFSRk0wNVVVWGxPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTV1E0TmxsdFZrdFpZUzgzVEcxcUNtOUhWR1pJT1hOalpFdzViU3RsVEZGcmMxTXJVVFZZU214c1R6WjBja0phWVdNeFQzcEdaVVJJV0VnMmVTc3haWEJVVGt0a04xSkhjMGhCWmtwbFFuZ0tVV0Z4WVVac1QycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRiR1ZQVkVsWU1rWnpSMk53ZGpaVU1rcEZSVXRySzAxaWMxZHFRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFtZzBSVTFaQ25odE4xTkxkbXMyWTNGNllXZ3hhbFF2VUVSSlVISlJUbmhqU1hOaVZtWXJSRTV1YkRWblNXaEJVSFp5T1c4dlJHbFFjV1l5VVVwcmVGZDNTV3QwUVZZS1FrSlRhWFJUVkVrNFlsUjNjSGhvUWxwalIwb0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMzY4NDMyZC1iOGEyLTRlMzctYTA4My0xNDhkN2M3Njc4NjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdHhZemh3ZUU5enVMNk1rRHM4MGphc3lKSjBDRXUxMFBrZDVWQ1RtYVM0d0NVejZrWVlwWFRpdjQ=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 855aca50-43ae-424d-9fff-382e981d753f - status: 200 OK - code: 200 - duration: 79.73807ms -- id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1615 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:42.676163Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1615" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c0d891fa-4e72-4ed2-aff5-44c1e439f0c6 - status: 200 OK - code: 200 - duration: 25.876814ms -- id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1ZGRjVUbXh2V0VSVVRURk5WRUY1VDFSRk0wNVVVWGxPYkc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTV1E0TmxsdFZrdFpZUzgzVEcxcUNtOUhWR1pJT1hOalpFdzViU3RsVEZGcmMxTXJVVFZZU214c1R6WjBja0phWVdNeFQzcEdaVVJJV0VnMmVTc3haWEJVVGt0a04xSkhjMGhCWmtwbFFuZ0tVV0Z4WVVac1QycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRiR1ZQVkVsWU1rWnpSMk53ZGpaVU1rcEZSVXRySzAxaWMxZHFRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFFtZzBSVTFaQ25odE4xTkxkbXMyWTNGNllXZ3hhbFF2VUVSSlVISlJUbmhqU1hOaVZtWXJSRTV1YkRWblNXaEJVSFp5T1c4dlJHbFFjV1l5VVVwcmVGZDNTV3QwUVZZS1FrSlRhWFJUVkVrNFlsUjNjSGhvUWxwalIwb0tMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9jMzY4NDMyZC1iOGEyLTRlMzctYTA4My0xNDhkN2M3Njc4NjUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogdHhZemh3ZUU5enVMNk1rRHM4MGphc3lKSjBDRXUxMFBrZDVWQ1RtYVM0d0NVejZrWVlwWFRpdjQ=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ef5cc565-32e4-4921-a39e-f139d7448f27 - status: 200 OK - code: 200 - duration: 26.861403ms -- id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865/available-types - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 541 - body: "{\"cluster_types\":[{\"name\":\"multicloud-dedicated-8\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":8000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}, {\"name\":\"multicloud-dedicated-16\", \"availability\":\"available\", \"max_nodes\":500, \"commitment_delay\":\"2592000s\", \"sla\":99.5, \"resiliency\":\"high_availability\", \"memory\":16000000000, \"dedicated\":true, \"audit_logs_supported\":true, \"max_etcd_size\":200000000}], \"total_count\":2}" - headers: - Content-Length: - - "541" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2083f140-825f-4bad-871e-a811b40a4d10 - status: 200 OK - code: 200 - duration: 142.332185ms -- id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1619 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:48.717944Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c02e381b-e04c-4b4f-9953-18a090d84708 - status: 200 OK - code: 200 - duration: 79.474665ms -- id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1618 - body: "{\"region\":\"fr-par\", \"id\":\"c368432d-b8a2-4e37-a083-148d7c767865\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:54:26.000572Z\", \"updated_at\":\"2025-10-30T17:55:48.717944Z\", \"type\":\"multicloud-dedicated-4\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://c368432d-b8a2-4e37-a083-148d7c767865.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.c368432d-b8a2-4e37-a083-148d7c767865.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-11-29T17:54:26.000581Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"63e906fc-d09f-4525-ac0e-3ab366d18ba1\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1618" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 698b18c9-89cc-4711-8f4c-d092ed343913 - status: 200 OK - code: 200 - duration: 26.475768ms -- id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c368432d-b8a2-4e37-a083-148d7c767865 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"c368432d-b8a2-4e37-a083-148d7c767865\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6ed93e94-bf2b-4cdb-8164-0cab94b33b14 - status: 404 Not Found - code: 404 - duration: 38.057649ms -- id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 649 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"multicloud\",\"name\":\"test-type-change\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"type-change\"],\"version\":\"1.34.1\",\"cni\":\"kilo\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[]}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1571 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T17:55:54.110934Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1571" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7a48cee9-063d-4fbf-8b7f-462ae5b9b58c - status: 200 OK - code: 200 - duration: 278.61246ms -- id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1570 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T17:55:54.110934Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1570" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:55:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - accd2653-cefb-44b4-8fbb-ce03937054f6 - status: 200 OK - code: 200 - duration: 110.162235ms -- id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:07.262660Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8efff25d-dcc3-44a2-b81f-0bdee643827c - status: 200 OK - code: 200 - duration: 87.697032ms -- id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:07.262660Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5fd20c95-d06f-4f81-b1e4-3a0c4f420177 - status: 200 OK - code: 200 - duration: 81.690559ms -- id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1ZGVXhUa1p2V0VSVVRURk5WRUY1VDFSRk0wNVVWVEZPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUazgyZUhCNVpIUnZUaXRHYkdNeENsVlpkMWt4WkhaNVZHRmphamxqYTNvM1dYWmtRbU5RTkZkS2RsQTRaRGh2UW5OSFNGaDFhekpPUzJaMVFVcGphMGgwU0VsNFUwUTNSRTVDVFVGUk5tRUtjRXRSTDFvMVMycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRXSFJ0TVZWV2FEUmxWR2xCTHpVeWIxaEdXbmxRVkRVMk1FeDZRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRXlTbEJ2Q2pBeEszcEhhbTF1WW01Q1Z5czViRXQ0VkhFeGNVZGtNWGs1TW1oMmNrOWlZVVJpVFdSTFowTkpSa2hTVlRGdmRYYzBXV0ZJZEVvd1kxVmthR0pSVVRBS2RrUndRWEZJYkhwVlRXdEJXRGxqT1RCalFtUUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZDc3YzM1NC01NDlkLTRmNzgtODcwMS1lOTk0ZmQwMTQ2NzYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUmtYcGw4OGhnV2FUWTZFdHU3elA0U0sxN0RGMmtHd2g3UFhlTWwzbWNzTERXUm1EZktGajNLbU4=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d3ac72e8-bc1b-43a2-88ee-bf49b25ca58c - status: 200 OK - code: 200 - duration: 83.574458ms -- id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:07.262660Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e23fc598-3609-4e3c-8c6f-7dc208ebc377 - status: 200 OK - code: 200 - duration: 24.933548ms -- id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:07.262660Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0a1aae43-b66b-4a7e-abb2-cbb029aa5ceb - status: 200 OK - code: 200 - duration: 24.347007ms -- id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlROT1ZGVXhUa1p2V0VSVVRURk5WRUY1VDFSRk0wNVVWVEZPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUazgyZUhCNVpIUnZUaXRHYkdNeENsVlpkMWt4WkhaNVZHRmphamxqYTNvM1dYWmtRbU5RTkZkS2RsQTRaRGh2UW5OSFNGaDFhekpPUzJaMVFVcGphMGgwU0VsNFUwUTNSRTVDVFVGUk5tRUtjRXRSTDFvMVMycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRXSFJ0TVZWV2FEUmxWR2xCTHpVeWIxaEdXbmxRVkRVMk1FeDZRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRXlTbEJ2Q2pBeEszcEhhbTF1WW01Q1Z5czViRXQ0VkhFeGNVZGtNWGs1TW1oMmNrOWlZVVJpVFdSTFowTkpSa2hTVlRGdmRYYzBXV0ZJZEVvd1kxVmthR0pSVVRBS2RrUndRWEZJYkhwVlRXdEJXRGxqT1RCalFtUUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly8yZDc3YzM1NC01NDlkLTRmNzgtODcwMS1lOTk0ZmQwMTQ2NzYuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogUmtYcGw4OGhnV2FUWTZFdHU3elA0U0sxN0RGMmtHd2g3UFhlTWwzbWNzTERXUm1EZktGajNLbU4=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1512e2bb-75a8-471b-b94b-19c55378daa2 - status: 200 OK - code: 200 - duration: 26.518777ms -- id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1607 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:11.058357Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1607" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 126849bc-03c0-4abb-a8b0-2afca9dc254d - status: 200 OK - code: 200 - duration: 185.758476ms -- id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1606 - body: "{\"region\":\"fr-par\", \"id\":\"2d77c354-549d-4f78-8701-e994fd014676\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T17:55:54.110934Z\", \"updated_at\":\"2025-10-30T18:01:11.058357Z\", \"type\":\"multicloud\", \"name\":\"test-type-change\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"kilo\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"type-change\"], \"cluster_url\":\"https://2d77c354-549d-4f78-8701-e994fd014676.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.2d77c354-549d-4f78-8701-e994fd014676.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":null, \"commitment_ends_at\":\"2025-10-30T17:55:54.110952Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9bf42687-a585-4a6b-96de-49683874175d\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1606" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9a34f07f-dcbd-4a9d-a6e1-bf1535c971b1 - status: 200 OK - code: 200 - duration: 28.000229ms -- id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"2d77c354-549d-4f78-8701-e994fd014676\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 071417db-ca59-48fd-9787-881d16c1cf16 - status: 404 Not Found - code: 404 - duration: 22.105206ms -- id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/2d77c354-549d-4f78-8701-e994fd014676 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"2d77c354-549d-4f78-8701-e994fd014676\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 18:01:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1c7677b2-4640-43a4-acd0-ff68946cc270 - status: 404 Not Found - code: 404 - duration: 22.407173ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2339fe07-8ae1-4da7-88c8-ba259d05e054 + status: 200 OK + code: 200 + duration: 167.122167ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + host: api.scaleway.com + body: '{"name":"tf-vpc-romantic-wright","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e21e0b12-55a4-47ee-81f1-81596f781b13 + status: 200 OK + code: 200 + duration: 70.518291ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 147d80f2-c544-4712-865a-ff9324359f4b + status: 200 OK + code: 200 + duration: 27.593375ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 194 + host: api.scaleway.com + body: '{"name":"test-type-change","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3df43c69-b4e9-46d2-a184-b34b6a14fb34 + status: 200 OK + code: 200 + duration: 803.736ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fe6abdac-1dc4-4534-836b-d0fe17356b02 + status: 200 OK + code: 200 + duration: 30.387708ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 708 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"kapsule","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.35.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1529 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:23.581744Z","type":"kapsule","name":"test-type-change","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1529" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 008eee06-3ff3-448f-b2b4-deec5124ff94 + status: 200 OK + code: 200 + duration: 453.46275ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1529 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:23.692982Z","type":"kapsule","name":"test-type-change","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1529" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 088f1b66-7883-4bb4-b3c6-fe58178a4979 + status: 200 OK + code: 200 + duration: 31.683958ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2206643e-2327-4afd-89f8-c84d9aaf12c7 + status: 200 OK + code: 200 + duration: 101.823167ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bcfd379a-3be0-40e7-b367-5f775203ca4f + status: 200 OK + code: 200 + duration: 54.501541ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 819c6d04-4ca0-4788-9fed-217ce253343d + status: 200 OK + code: 200 + duration: 24.995583ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 83866c8e-47dc-4eac-91fb-64dec4bc2051 + status: 200 OK + code: 200 + duration: 36.893375ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b86345fe-d507-4c7f-b98f-45dc361f6a29 + status: 200 OK + code: 200 + duration: 103.0665ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6ad8cf21-4055-44bd-b9ea-93142d2c5422 + status: 200 OK + code: 200 + duration: 34.28625ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6639c18b-b88a-4609-811d-6971814f8ae4 + status: 200 OK + code: 200 + duration: 29.329041ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 744919e2-17f0-440d-a5eb-535c8a50cd98 + status: 200 OK + code: 200 + duration: 22.733208ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 68c821cf-ae26-48ca-b5d6-6fec8b6c23e9 + status: 200 OK + code: 200 + duration: 90.3555ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8603dbbd-4f89-4cd8-84af-30446ee891ad + status: 200 OK + code: 200 + duration: 27.057291ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a90c0846-73e2-4f77-bfd3-ed572e52bd0a + status: 200 OK + code: 200 + duration: 27.682042ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c5115e17-d98c-48ca-83f6-afeb6303682d + status: 200 OK + code: 200 + duration: 27.111291ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 86dbd404-6ecf-44f6-a0f5-bb9d0e78281d + status: 200 OK + code: 200 + duration: 30.570542ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/available-types + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 964 + body: '{"cluster_types":[{"name":"kapsule","availability":"available","max_nodes":150,"commitment_delay":"0s","sla":0,"resiliency":"standard","memory":4000000000,"dedicated":false,"audit_logs_supported":false,"max_etcd_size":55000000},{"name":"kapsule-dedicated-4","availability":"available","max_nodes":250,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":4000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-8","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":8000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-16","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":16000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000}],"total_count":4}' + headers: + Content-Length: + - "964" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b7349b6d-182f-42e7-a5d1-4179cce8fbc4 + status: 200 OK + code: 200 + duration: 174.931833ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/available-types + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 964 + body: '{"cluster_types":[{"name":"kapsule","availability":"available","max_nodes":150,"commitment_delay":"0s","sla":0,"resiliency":"standard","memory":4000000000,"dedicated":false,"audit_logs_supported":false,"max_etcd_size":55000000},{"name":"kapsule-dedicated-4","availability":"available","max_nodes":250,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":4000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-8","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":8000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-16","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":16000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000}],"total_count":4}' + headers: + Content-Length: + - "964" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ec914e1a-59ab-4711-baa3-655ef86c25b6 + status: 200 OK + code: 200 + duration: 84.873708ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1570 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:24.043860Z","type":"kapsule","name":"test-type-change","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-01-29T16:44:23.581757Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1570" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ee86d6e1-1130-4f2e-9645-cd17376f5a23 + status: 200 OK + code: 200 + duration: 25.912667ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 30 + host: api.scaleway.com + body: '{"type":"kapsule-dedicated-4"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/set-type + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - db806553-b3a1-4598-903a-5930195fd591 + status: 200 OK + code: 200 + duration: 261.981584ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d4084ee5-8900-4573-bee0-1401c6d76e9a + status: 200 OK + code: 200 + duration: 100.021625ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 851a00f9-3b91-43d1-9e2c-7732da2cfa3a + status: 200 OK + code: 200 + duration: 86.45875ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0ce022e1-4e89-4a08-b5e4-74bb598cad45 + status: 200 OK + code: 200 + duration: 95.981084ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c291af9e-5673-4d66-827c-67bf0ad1320f + status: 200 OK + code: 200 + duration: 79.616333ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a51ffda4-5dcc-4a69-aaa0-3bdaf667e8ff + status: 200 OK + code: 200 + duration: 101.097292ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:44:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 39c01631-9158-4077-90fb-c32179de67d1 + status: 200 OK + code: 200 + duration: 94.013709ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - accd5952-2f45-42a9-a3b7-d9628a7221c2 + status: 200 OK + code: 200 + duration: 35.528333ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ae7b89cc-4279-41a1-8e59-59ea76a6fca9 + status: 200 OK + code: 200 + duration: 84.253458ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2d58bf65-d674-4cc2-9fea-a2442e502529 + status: 200 OK + code: 200 + duration: 91.980583ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0d2289ee-2d24-411b-91f5-9a6f14a2ff88 + status: 200 OK + code: 200 + duration: 89.444083ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d319348d-8f98-4ff6-b8cd-81ec865c4543 + status: 200 OK + code: 200 + duration: 97.347166ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e5e22bc0-6c01-4536-a0bb-dc890f4d4d65 + status: 200 OK + code: 200 + duration: 101.622ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 711a5a1e-ac78-4f65-945b-f0b541dda378 + status: 200 OK + code: 200 + duration: 108.337542ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 49e3bd66-a76d-4b51-a3d8-5ca5db71ba8b + status: 200 OK + code: 200 + duration: 117.56175ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a66b121a-359c-4259-aba2-2ecdba76c22f + status: 200 OK + code: 200 + duration: 99.656625ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 997d3b97-4881-4794-8d2e-b60ca70302da + status: 200 OK + code: 200 + duration: 92.088083ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - aa3e4b59-eb31-4ee4-a0c5-1ab15cf04fe8 + status: 200 OK + code: 200 + duration: 95.871625ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:45:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fde2fbab-4ebb-40a2-a27c-c4c2a2b6078f + status: 200 OK + code: 200 + duration: 102.352042ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0533e585-d487-4a88-81b9-ee6d03012705 + status: 200 OK + code: 200 + duration: 36.035375ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e0ed1b3c-bbfb-413a-b97c-8508d3a66e44 + status: 200 OK + code: 200 + duration: 115.571792ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 15aac8f2-5c50-4cdc-bafb-c0114c3e2aa7 + status: 200 OK + code: 200 + duration: 94.675333ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 84ce017d-8491-4157-b25a-7f7ec48e1987 + status: 200 OK + code: 200 + duration: 107.053958ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a6afa7f3-53a8-4555-ba91-72e6661747b8 + status: 200 OK + code: 200 + duration: 83.206125ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:44:30.691952Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6cae5df0-3c91-4359-af37-fd4c324e5206 + status: 200 OK + code: 200 + duration: 98.728416ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:28.417900Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bef246d6-6634-40a2-8987-4f5f29b64d54 + status: 200 OK + code: 200 + duration: 100.705791ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f06cd7eb-b264-4cdb-9378-9d4f28aa47a8 + status: 200 OK + code: 200 + duration: 122.9175ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 592 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8ccb73a2-c844-4a49-9631-aa7b81e9ba9c + status: 200 OK + code: 200 + duration: 129.83275ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4b607160-91f8-481d-8c92-b565d403d3cd + status: 200 OK + code: 200 + duration: 30.747125ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f1b63d68-41f7-406d-9550-f4e1938a3085 + status: 200 OK + code: 200 + duration: 93.608ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fd721d52-3c31-4e1a-bb63-b3adaec0b401 + status: 200 OK + code: 200 + duration: 86.347291ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7fdbb7d3-4235-4762-80cd-393070c15810 + status: 200 OK + code: 200 + duration: 91.580292ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 49eaf072-190f-4b5a-a840-3d9e07241618 + status: 200 OK + code: 200 + duration: 97.102959ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:46:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 706ee899-54ea-4ffa-b693-42900c668367 + status: 200 OK + code: 200 + duration: 39.078375ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 75eacba8-73ec-4144-aa01-f72b5ccec998 + status: 200 OK + code: 200 + duration: 93.796958ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5c1e8bb7-68f8-4c80-a294-d07e637da6eb + status: 200 OK + code: 200 + duration: 100.201167ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 56c59de0-6a69-45be-8fc7-733e550d5dc2 + status: 200 OK + code: 200 + duration: 104.898792ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f65b374f-88ea-4bee-bc18-45fa41e9980f + status: 200 OK + code: 200 + duration: 104.786208ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 62cece2b-a3e2-4660-84b3-0b38c20c6731 + status: 200 OK + code: 200 + duration: 91.089042ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1db31036-6ad3-4492-b9df-6e237c07e5c8 + status: 200 OK + code: 200 + duration: 104.913792ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1ebda928-51e6-476a-a205-c16f505c1bb5 + status: 200 OK + code: 200 + duration: 32.763166ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bc0e577b-1f65-46cd-ae69-5b32b43c84a3 + status: 200 OK + code: 200 + duration: 89.861833ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 65df9cc1-5bfc-4dcf-b79a-1a8c1ed2e605 + status: 200 OK + code: 200 + duration: 96.960791ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - de0e6a29-0f66-4254-b237-d3bda030a46b + status: 200 OK + code: 200 + duration: 85.02ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7f02d1d7-cf88-4a07-89ee-0e2a5978f61b + status: 200 OK + code: 200 + duration: 50.8455ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:47:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a1f62e0d-4e41-43dc-a046-3c4ee9d35687 + status: 200 OK + code: 200 + duration: 81.843667ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 04b95ed0-6207-4c04-9a7b-21b78eca9f1f + status: 200 OK + code: 200 + duration: 88.09325ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ad030015-ad2e-44b0-a176-ac2c23f4ff18 + status: 200 OK + code: 200 + duration: 98.439083ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9f811894-8470-43b8-86ef-d0c72982b186 + status: 200 OK + code: 200 + duration: 97.509333ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - dbeccea3-25ae-4a10-8784-bdfb5d399fc1 + status: 200 OK + code: 200 + duration: 144.027791ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 869e2308-03c8-46f7-9a36-40ac39f9d259 + status: 200 OK + code: 200 + duration: 92.927666ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 671fc56a-4934-47ad-829c-77c73c2f46c7 + status: 200 OK + code: 200 + duration: 98.117083ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ed8b2fe8-89e3-41eb-abe7-7d01e1f6934d + status: 200 OK + code: 200 + duration: 120.840416ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 350b132d-2197-45ad-93fa-a0a01ef9b7a1 + status: 200 OK + code: 200 + duration: 81.025ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bc3d263f-aff2-458b-82bb-22338f8dd5fc + status: 200 OK + code: 200 + duration: 118.635583ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2da95748-8fa0-422c-ab7c-cc1c1f39beda + status: 200 OK + code: 200 + duration: 106.49775ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:48:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f6139140-62f6-46a7-aa63-c659cade5a24 + status: 200 OK + code: 200 + duration: 98.59875ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2ed5c793-8402-4c95-865a-b80df9420ef5 + status: 200 OK + code: 200 + duration: 118.1375ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5785e07b-36cb-4344-8329-4bb4d752cd08 + status: 200 OK + code: 200 + duration: 110.260375ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 764eb026-a644-4bb8-b5e7-5d9263e4dd21 + status: 200 OK + code: 200 + duration: 87.800084ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3785bb51-6c3b-4365-bc64-1cec6f1511cd + status: 200 OK + code: 200 + duration: 89.015708ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d40659f0-117f-4d08-b361-d96798011372 + status: 200 OK + code: 200 + duration: 38.942666ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 73d97c1b-6834-44f1-afc7-8838af79111a + status: 200 OK + code: 200 + duration: 103.264625ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a1a45d65-1962-4d16-90be-a6b62c1923a5 + status: 200 OK + code: 200 + duration: 97.00625ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e53f89fd-8b8e-4f66-92aa-d1c9ba372077 + status: 200 OK + code: 200 + duration: 102.160708ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - caa5ba15-a26f-4a3e-afd0-288636b527f1 + status: 200 OK + code: 200 + duration: 58.553625ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0c423691-ecd5-4ba3-b861-7ef3830a0612 + status: 200 OK + code: 200 + duration: 89.071625ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 6bb03044-c5c0-448b-b0cc-ccf6efc3ea45 + status: 200 OK + code: 200 + duration: 100.35025ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:49:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 68d1c98a-c1b4-4b8c-b784-959b4d4b5f8c + status: 200 OK + code: 200 + duration: 97.920625ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:46:33.414191Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c066fe31-5757-45c9-a3be-f127e11c9c72 + status: 200 OK + code: 200 + duration: 82.888708ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 00b6e6e4-c95a-4fcb-b798-afd93055e981 + status: 200 OK + code: 200 + duration: 106.597333ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 4c52129a-3f0e-4a81-adbe-40601b8a30f3 + status: 200 OK + code: 200 + duration: 36.1225ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d65cfa2e-414a-4174-808b-a5747f2972ae + status: 200 OK + code: 200 + duration: 90.768542ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7dfcb093-9e4e-40cf-bed2-04f6b7ae81d2 + status: 200 OK + code: 200 + duration: 26.69025ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fa0ae2ac-90af-48a2-8adc-ad2a9aadece7 + status: 200 OK + code: 200 + duration: 32.306834ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 55bc47ca-c645-4430-8e91-a25b4bc6dfd9 + status: 200 OK + code: 200 + duration: 79.765333ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f2bbfcc0-ff83-4fb8-baef-ed712a077a4e + status: 200 OK + code: 200 + duration: 34.635625ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 201663a1-9925-4b78-85d9-553884059b3f + status: 200 OK + code: 200 + duration: 93.211375ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3dfc7796-8705-4b92-98ae-e54ca60f3fb3 + status: 200 OK + code: 200 + duration: 29.571875ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e51903ce-719f-4bf7-8348-1c555525911c + status: 200 OK + code: 200 + duration: 25.999333ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 274c9a49-8346-48a4-9238-bdae655735d5 + status: 200 OK + code: 200 + duration: 90.769083ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ed3103c7-8cf1-4d93-b74e-e2919f5e03f1 + status: 200 OK + code: 200 + duration: 42.54075ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/available-types + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 515 + body: '{"cluster_types":[{"name":"kapsule-dedicated-8","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":8000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-16","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":16000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000}],"total_count":2}' + headers: + Content-Length: + - "515" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 978643d7-85d0-49e5-9b66-b0d696019c8e + status: 200 OK + code: 200 + duration: 100.079625ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/available-types + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 515 + body: '{"cluster_types":[{"name":"kapsule-dedicated-8","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":8000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000},{"name":"kapsule-dedicated-16","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":16000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000}],"total_count":2}' + headers: + Content-Length: + - "515" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0404b0f9-711f-42fd-9a15-8bcf992a11b2 + status: 200 OK + code: 200 + duration: 92.620666ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:03.616833Z","type":"kapsule-dedicated-4","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:44:30.775484Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b8efa328-ebde-4dc4-b8ac-e1a0656e6829 + status: 200 OK + code: 200 + duration: 29.5655ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 30 + host: api.scaleway.com + body: '{"type":"kapsule-dedicated-8"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/set-type + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - dcf3f0ea-f176-4449-89d8-9873f362e00f + status: 200 OK + code: 200 + duration: 422.135458ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 12f362eb-39db-41bf-a8d1-53ec9d4f0f85 + status: 200 OK + code: 200 + duration: 24.629709ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7ab2f1ef-074c-4cd7-92be-3bd7deb0927e + status: 200 OK + code: 200 + duration: 116.90825ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d429249d-65a0-4b77-960b-ab5c150754ff + status: 200 OK + code: 200 + duration: 83.596167ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 62a7330f-7e78-42c5-8089-4a4a56d90de1 + status: 200 OK + code: 200 + duration: 152.466625ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fc95127b-b02c-4e8c-97f6-6e304092a42d + status: 200 OK + code: 200 + duration: 98.121875ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7ad20796-b1c6-4ad3-9cdd-623370112bb4 + status: 200 OK + code: 200 + duration: 100.1085ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8f01d0fd-43fb-4215-82f5-8925ff17f47a + status: 200 OK + code: 200 + duration: 44.868ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f7ee8a70-bdff-4439-ae70-c9b8f8a459cd + status: 200 OK + code: 200 + duration: 97.935667ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - dc218b5a-a206-49df-813b-825eb9017893 + status: 200 OK + code: 200 + duration: 108.926583ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:50:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c85c5b31-b56b-4b05-a613-e3c0ecaf7c47 + status: 200 OK + code: 200 + duration: 112.869208ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0289dd1c-8bee-4146-9b2d-2617932085c5 + status: 200 OK + code: 200 + duration: 85.231958ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9dd193c6-f782-4a85-9c08-a6783be2a60e + status: 200 OK + code: 200 + duration: 123.731125ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 91bb25ed-bc59-4de0-acd8-99368759d1bb + status: 200 OK + code: 200 + duration: 107.20475ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7b59ffa7-ca3f-4326-8783-8b00143686b2 + status: 200 OK + code: 200 + duration: 163.879416ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ff57e96c-0c21-4c85-b8a4-8d858f66d9d5 + status: 200 OK + code: 200 + duration: 88.127958ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9b33d4be-6460-4c4f-bb2c-87d5abc0fc7e + status: 200 OK + code: 200 + duration: 93.373833ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 68817e3c-8ff5-4140-a8cd-5e08d3084ad1 + status: 200 OK + code: 200 + duration: 31.250417ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 60c2edeb-1377-4e18-9c0a-05bd3a93e028 + status: 200 OK + code: 200 + duration: 91.465667ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2ce09df8-adc1-4bb0-b8c4-bb2a58acdbe3 + status: 200 OK + code: 200 + duration: 113.109542ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 5768f82d-2e83-4459-9e2c-8012481efa39 + status: 200 OK + code: 200 + duration: 101.039333ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 49a40006-d432-4fb9-8d1e-80240f5e7450 + status: 200 OK + code: 200 + duration: 101.20625ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:51:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 54afb4d9-680b-4f08-a727-0f42c107fa67 + status: 200 OK + code: 200 + duration: 37.498542ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a4c609d4-0526-4a34-944d-d01f4ffe797c + status: 200 OK + code: 200 + duration: 102.836083ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:50:09.330469Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 24103861-485f-4780-b780-bd7b8757f6c8 + status: 200 OK + code: 200 + duration: 40.330209ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:07.423169Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 98fe08a5-e4b7-42cf-8cad-e2df28133ab2 + status: 200 OK + code: 200 + duration: 36.952166ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d962ddf2-77d7-48ac-8564-264bc0930390 + status: 200 OK + code: 200 + duration: 95.990041ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 592 + host: api.scaleway.com + body: '{"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":null,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":null},"auto_upgrade":{"enable":null,"maintenance_window":null},"open_id_connect_config":{"issuer_url":null,"client_id":null,"username_claim":null,"username_prefix":null,"groups_claim":null,"groups_prefix":null,"required_claim":null}}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2dc56711-6622-4beb-a09e-209669f30b88 + status: 200 OK + code: 200 + duration: 150.004958ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e8417e92-4ce4-4e42-b75e-47762353d8ca + status: 200 OK + code: 200 + duration: 28.847334ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 668c5a58-ad9e-4599-ac31-290e7c4d7697 + status: 200 OK + code: 200 + duration: 99.349833ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8ac98df4-adb9-42a8-bad4-56437a7e7dce + status: 200 OK + code: 200 + duration: 105.581125ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - bc6cc3e7-cdc3-40b2-81ec-81328899ef32 + status: 200 OK + code: 200 + duration: 96.172917ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9ef1a778-92d4-4f26-81f9-70de28c5fcb2 + status: 200 OK + code: 200 + duration: 92.469625ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2f4c3e55-aacf-45f7-b8c0-8c2545c40eb3 + status: 200 OK + code: 200 + duration: 102.676541ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1a4d299e-af6f-40d1-a1e2-ab54fb785dee + status: 200 OK + code: 200 + duration: 97.29125ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 90105f60-5fcc-4224-bc5f-3381d0b9f118 + status: 200 OK + code: 200 + duration: 52.69325ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d286ed89-39df-484f-a6b3-6746dfe4e46e + status: 200 OK + code: 200 + duration: 120.67ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:52:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a52e7d1b-6930-4a8b-ba1f-66e8179ee870 + status: 200 OK + code: 200 + duration: 112.646458ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a5aeff21-ce6e-4c5a-9734-1e2b9f4207c6 + status: 200 OK + code: 200 + duration: 97.97175ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 44ee2fe8-c317-4289-b224-fd12f9cf6e7f + status: 200 OK + code: 200 + duration: 88.279167ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f2b47707-f253-4aa5-8dd9-0f765b94ced7 + status: 200 OK + code: 200 + duration: 284.275292ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d8071d18-0890-40c8-9ac5-7ea0b9455bb3 + status: 200 OK + code: 200 + duration: 139.6755ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e4815570-3340-40b6-8bf6-d929c6dc0caf + status: 200 OK + code: 200 + duration: 65.851417ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c243877d-2823-4ca9-b11b-a497eeb097ef + status: 200 OK + code: 200 + duration: 118.804291ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - a9f98ae7-22f5-4425-a7f2-265246ba4268 + status: 200 OK + code: 200 + duration: 111.803166ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ea8140a0-c36d-4c46-8a38-a8946cb50835 + status: 200 OK + code: 200 + duration: 145.442ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 071cac54-cade-4409-9a45-113a2bb4200c + status: 200 OK + code: 200 + duration: 127.541458ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 63bf9123-cf6f-40da-a9eb-b9fb0d024e0a + status: 200 OK + code: 200 + duration: 34.591667ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1b9681e1-6c32-44f8-a524-37508fea1eb4 + status: 200 OK + code: 200 + duration: 40.152209ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:53:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3d7fbf82-e747-42ad-bda7-67f21fcf2d3d + status: 200 OK + code: 200 + duration: 95.472167ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 0496877d-b14b-42cc-8d7e-bdba4ed302ac + status: 200 OK + code: 200 + duration: 38.505292ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 3dca63b2-fcaa-40cb-8899-95d41cd1fc17 + status: 200 OK + code: 200 + duration: 97.698125ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - cdfb303b-4199-4062-8964-f1fd389d073e + status: 200 OK + code: 200 + duration: 98.987458ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 627c11bd-5ff2-4800-b976-4d5fe6627400 + status: 200 OK + code: 200 + duration: 48.990209ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f01dc62c-1246-4ba8-b241-6de8d3cc94aa + status: 200 OK + code: 200 + duration: 91.227917ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:29 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 27f7a3a9-50cc-445a-9f69-c51b90a730c5 + status: 200 OK + code: 200 + duration: 90.693125ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 576282eb-4c8d-4aa4-8b4a-16336cb153cc + status: 200 OK + code: 200 + duration: 95.772583ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 7ddf251c-7006-4e9c-9167-2927a89ca603 + status: 200 OK + code: 200 + duration: 92.036375ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 424e8a0f-e708-4147-87c6-0990871c17a0 + status: 200 OK + code: 200 + duration: 107.884917ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fa1fa516-442d-47c4-8d3d-5c187f3ebd71 + status: 200 OK + code: 200 + duration: 112.162875ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:54:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - acfb3d36-2f65-4487-8ed8-a5c0f58ad9ad + status: 200 OK + code: 200 + duration: 88.428917ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b6ef383c-a8c2-4776-9987-66dedb8ceb34 + status: 200 OK + code: 200 + duration: 90.806417ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 13e98026-a983-4ea0-8a71-26c94a53d706 + status: 200 OK + code: 200 + duration: 39.256375ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:52:12.129994Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"updating","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 22d1f065-22eb-4202-a8a2-e9209a2b9af5 + status: 200 OK + code: 200 + duration: 38.994666ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:14.544573Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 50fbc36f-b4e6-4058-a1bc-a6bde2348bf9 + status: 200 OK + code: 200 + duration: 123.244ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:14.544573Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 1a964f9b-7503-4c15-9a1f-db7e132db73e + status: 200 OK + code: 200 + duration: 127.138125ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ffe8399b-fb87-4c59-bc6e-2757bf2abd6a + status: 200 OK + code: 200 + duration: 78.591625ms + - id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:14.544573Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - ef0c528a-439e-456c-a8b7-91ae9e7d9359 + status: 200 OK + code: 200 + duration: 25.094709ms + - id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 50befc8c-63da-43b6-9505-01e08cf48760 + status: 200 OK + code: 200 + duration: 87.465584ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d51f3c07-b77c-4331-9e1a-98d7dc34b2d4 + status: 200 OK + code: 200 + duration: 32.323833ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:14.544573Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - e945d47e-1b5c-4783-9d04-3c5f10e2d48d + status: 200 OK + code: 200 + duration: 20.10375ms + - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - fb088ecb-db48-42a6-8494-9714d0c171a5 + status: 200 OK + code: 200 + duration: 28.33975ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 409 + body: '{"id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","name":"tf-vpc-romantic-wright","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.325226Z","updated_at":"2026-01-29T16:44:22.325226Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "409" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 609dc49c-5fb9-4039-a4d1-045585e29db2 + status: 200 OK + code: 200 + duration: 23.505209ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1062 + body: '{"id":"1d889915-4f5d-4647-854a-e47bd7e607e9","name":"test-type-change","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"ea465289-b8f3-46c1-bd65-c8c596ee7842","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"172.17.36.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"},{"id":"962b38dc-1ed0-4ad1-83ef-5e5149b5f143","created_at":"2026-01-29T16:44:22.501581Z","updated_at":"2026-01-29T16:44:22.501581Z","subnet":"fd5f:519c:6d46:637b::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf"}],"vpc_id":"f443530a-2cf1-42eb-ad2d-68e70ae94ecf","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1062" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 801c09c6-8f78-4b87-b0e1-0189587e0063 + status: 200 OK + code: 200 + duration: 29.744833ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1574 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:14.544573Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1574" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - f535ff00-9a0e-4550-98cb-ad971900467d + status: 200 OK + code: 200 + duration: 91.440125ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1664 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtdHlwZS1jaGFuZ2UiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGVrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRKT1JGRjVUVEZ2V0VSVVRUSk5SRVY1VDBSRk1rNUVVWGxOTVc5M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTSGhuYjI1TE9GUTJWVzFKU3psRkNsaFZUSFV4VlZKNllUTnVhbWhtZDNoaVNYZGlUMEYyZVZaWFFsbHdiR0pwYWpsamQxZHRVMUk1Y1ZoSU1EYzJXbTFMTTFGUFEzUjJPV2hCZFU4M1pHd0tkRnBOVTJscFQycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlVRM3B3VjA1T1NVNDRaMDltTjBVMlVEa3lNbU5rVm1salQzSkVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUpRVVJDUmtGcFJVRTBhMUZzQ2xwM0t6SnFjeXQwTUUxRk5XdENZMkZGY0cxMGVuaFBlbVY1ZEdncmNUSjBNM0V3YjJ0U2EwTkpSVUpHVDNSemJYaExLeXRJWm5seFkwVXhSSGR4SzBrS1UzWlVjM2RZWXpBdlJWZHBkbmd4TDJWUmFsSUtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9kYmM4NDY4Ni01NGQ4LTRmMWMtYmU2OC1hNDIxYmI1ODI1NzUuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGVzdC10eXBlLWNoYW5nZQogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGVzdC10eXBlLWNoYW5nZSIKICAgIHVzZXI6IHRlc3QtdHlwZS1jaGFuZ2UtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0ZXN0LXR5cGUtY2hhbmdlCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGVzdC10eXBlLWNoYW5nZS1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogNlluY0xOQ1MzeHpTdlpQTDU3M2ZienpYZ2VudWQxa1Z0UVY2b1BnZGU5NlJtZE84Y09FcFRhV2o="}' + headers: + Content-Length: + - "1664" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - b870d55c-4ca3-4f82-ad9a-4cfd98325cd9 + status: 200 OK + code: 200 + duration: 89.456333ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575/available-types + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 276 + body: '{"cluster_types":[{"name":"kapsule-dedicated-16","availability":"available","max_nodes":500,"commitment_delay":"2592000s","sla":99.5,"resiliency":"high_availability","memory":16000000000,"dedicated":true,"audit_logs_supported":true,"max_etcd_size":200000000}],"total_count":1}' + headers: + Content-Length: + - "276" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 9f30b7f7-8300-4f07-b43a-fe068245a7c2 + status: 200 OK + code: 200 + duration: 178.647792ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:17.616944Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 2c9ebd79-590f-4a53-80d4-08fff9e82ae7 + status: 200 OK + code: 200 + duration: 132.8275ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1577 + body: '{"region":"fr-par","id":"dbc84686-54d8-4f1c-be68-a421bb582575","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:44:23.581744Z","updated_at":"2026-01-29T16:55:17.616944Z","type":"kapsule-dedicated-8","name":"test-type-change","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"cluster_url":"https://dbc84686-54d8-4f1c-be68-a421bb582575.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.dbc84686-54d8-4f1c-be68-a421bb582575.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"1d889915-4f5d-4647-854a-e47bd7e607e9","commitment_ends_at":"2026-02-28T16:50:09.574957Z","acl_available":true,"iam_nodes_group_id":"93f4de86-b32b-4b13-9a72-bb9db9880e0e","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1577" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 8120715e-3624-45b2-b38a-f503be4be477 + status: 200 OK + code: 200 + duration: 24.746042ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/dbc84686-54d8-4f1c-be68-a421bb582575 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"dbc84686-54d8-4f1c-be68-a421bb582575","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 310dda88-6f7c-4672-bc93-45264185b5a7 + status: 404 Not Found + code: 404 + duration: 38.860167ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d889915-4f5d-4647-854a-e47bd7e607e9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - d138b1d7-3d72-446c-913b-cecf04047f05 + status: 204 No Content + code: 204 + duration: 1.158248416s + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f443530a-2cf1-42eb-ad2d-68e70ae94ecf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - 20712959-dbe2-44fa-8725-97fbcd1ca49b + status: 204 No Content + code: 204 + duration: 214.562333ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 661 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"multicloud-dedicated-4","name":"test-type-change","description":"","tags":["terraform-test","scaleway_k8s_cluster","type-change"],"version":"1.35.0","cni":"kilo","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[]}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 207 + body: '{"details":[{"argument_name":"version","help_message":"creating Kosmos clusters with Kubernetes 1.35+ is not yet supported","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' + headers: + Content-Length: + - "207" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:55:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + X-Request-Id: + - c921c86d-0e28-4f17-8203-fbe1cc2ec7d9 + status: 400 Bad Request + code: 400 + duration: 94.308542ms diff --git a/internal/services/k8s/testdata/data-source-cluster-basic.cassette.yaml b/internal/services/k8s/testdata/data-source-cluster-basic.cassette.yaml index f24d07388e..1d2afa470a 100644 --- a/internal/services/k8s/testdata/data-source-cluster-basic.cassette.yaml +++ b/internal/services/k8s/testdata/data-source-cluster-basic.cassette.yaml @@ -1,1934 +1,2702 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3ad5aa79-7513-42bd-b093-c78999d2185e - status: 200 OK - code: 200 - duration: 89.788538ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 126 - host: api.scaleway.com - body: "{\"name\":\"TestAccDataSourceCluster_Basic\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 428 - body: "{\"id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"name\":\"TestAccDataSourceCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.728379Z\", \"updated_at\":\"2025-10-30T16:51:13.728379Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "428" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - e247b071-c815-4946-bebc-8bd617b467ce - status: 200 OK - code: 200 - duration: 67.61433ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/60284594-bb0a-4343-bed9-f7375e44e80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 428 - body: "{\"id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"name\":\"TestAccDataSourceCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.728379Z\", \"updated_at\":\"2025-10-30T16:51:13.728379Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "428" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3db7df6e-83c6-452f-bc3a-3cd2f3d68242 - status: 200 OK - code: 200 - duration: 30.155607ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 202 - host: api.scaleway.com - body: "{\"name\":\"test-data-source-cluster\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1095 - body: "{\"id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"name\":\"test-data-source-cluster\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"468952b2-af55-4445-bbef-dd440556b291\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}, {\"id\":\"74ca9ee6-21e1-4d13-a7ca-a9f2e5b2adac\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"fd5f:519c:6d46:2cac::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}], \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1095" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3ee52c07-1c44-4f13-b9e1-54a76b43ae24 - status: 200 OK - code: 200 - duration: 642.605819ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66470a27-4266-4f37-8e20-6bf15260d20b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1095 - body: "{\"id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"name\":\"test-data-source-cluster\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"468952b2-af55-4445-bbef-dd440556b291\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}, {\"id\":\"74ca9ee6-21e1-4d13-a7ca-a9f2e5b2adac\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"fd5f:519c:6d46:2cac::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}], \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1095" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 22789030-a33d-49f4-b2fc-396cb4803643 - status: 200 OK - code: 200 - duration: 27.101104ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 700 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"tf-cluster-basic\",\"description\":\"\",\"tags\":[\"terraform-test\",\"data_scaleway_k8s_cluster\",\"basic\"],\"version\":\"1.34.1\",\"cni\":\"cilium\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1603 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:14.772781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1603" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 835c85c1-0fae-459a-a3ac-19e22c6b6611 - status: 200 OK - code: 200 - duration: 315.806042ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1602 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:14.772781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1602" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 8df12dad-0969-443d-b17b-ff00518b0d65 - status: 200 OK - code: 200 - duration: 118.006146ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1643 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1643" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5b17fae3-4980-49d3-ade7-db9a16cc85b7 - status: 200 OK - code: 200 - duration: 94.323749ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6a469b48-b846-4f75-96fd-6b8034d25d85 - status: 200 OK - code: 200 - duration: 23.681356ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1643 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1643" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 75e45b90-e61c-4945-8a4a-715866dcefe4 - status: 200 OK - code: 200 - duration: 90.916574ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ce00bb80-c13c-4c4e-ae12-ed6bf6daeea1 - status: 200 OK - code: 200 - duration: 84.999118ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1643 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1643" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c86175eb-2f76-4023-95a4-89ce6bba2f3e - status: 200 OK - code: 200 - duration: 20.035943ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1643 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1643" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d750fc68-443d-4332-8a98-2271451385bf - status: 200 OK - code: 200 - duration: 25.333356ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 7084dde6-18ca-40c7-83d4-40d6e9b757d5 - status: 200 OK - code: 200 - duration: 20.808865ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - name: - - tf-cluster-basic - order_by: - - created_at_asc - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster-basic&order_by=created_at_asc&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1675 - body: "{\"total_count\":1, \"clusters\":[{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}]}" - headers: - Content-Length: - - "1675" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - cff59fba-2fa6-46e0-bee9-c4161bc706a7 - status: 200 OK - code: 200 - duration: 102.395078ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1643 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:51:15.263781Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1643" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 750451e3-58d0-4bb3-81db-847c16715dcd - status: 200 OK - code: 200 - duration: 17.928899ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 22d9dd46-3630-4c72-bd37-983f1e8ad0a1 - status: 200 OK - code: 200 - duration: 22.22378ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 261 - host: api.scaleway.com - body: "{\"name\":\"default\",\"node_type\":\"pro2_xxs\",\"autoscaling\":true,\"size\":1,\"min_size\":1,\"max_size\":1,\"container_runtime\":\"containerd\",\"autohealing\":true,\"tags\":[],\"kubelet_args\":{},\"zone\":\"fr-par-1\",\"root_volume_type\":\"default_volume_type\",\"public_ip_disabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/pools - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 706 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:51:20.352813Z\", \"name\":\"default\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "706" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6442e8fd-e899-4834-bb0f-67aebe9a76f2 - status: 200 OK - code: 200 - duration: 209.144478ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 706 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:51:20.352813Z\", \"name\":\"default\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "706" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:51:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4559ef03-f39c-44d7-a171-220459c66ec1 - status: 200 OK - code: 200 - duration: 21.812788ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 704 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:55:32.030313Z\", \"name\":\"default\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "704" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 99828913-7a81-42a7-a647-0e8bbc487877 - status: 200 OK - code: 200 - duration: 94.628531ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 21b57486-5b42-49a4-b8ab-fafb9396102d - status: 200 OK - code: 200 - duration: 20.363468ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 704 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:55:32.030313Z\", \"name\":\"default\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "704" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4c36ff98-b9ea-49fc-8c80-dbecde8307ab - status: 200 OK - code: 200 - duration: 17.709077ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 16c99ed8-da30-4867-b6a9-e35deb88ccab - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/nodes?order_by=created_at_asc&page=1&pool_id=16c99ed8-da30-4867-b6a9-e35deb88ccab&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"0171d1b9-9bd3-4f55-abaa-af8f0521b849\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:54:36.556869Z\", \"updated_at\":\"2025-10-30T16:55:32.020365Z\", \"pool_id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/d723decb-3358-416a-9104-299752ba1318\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6b856d13-8793-4005-a5ed-9aefe93fd02e - status: 200 OK - code: 200 - duration: 94.85288ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4e707e81-bf4f-4943-be27-87a69799d957 - status: 200 OK - code: 200 - duration: 22.120147ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-tf-cluster-basic-default-0171d1b99bd34f55a - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-tf-cluster-basic-default-0171d1b99bd34f55a&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1123 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"75fd09c2-c088-4df6-a341-69e97c22d1d0\", \"address\":\"fd5f:519c:6d46:2cac:5439:8e0a:6e84:7c91/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:54:39.822358Z\", \"updated_at\":\"2025-10-30T16:54:39.822358Z\", \"source\":{\"subnet_id\":\"74ca9ee6-21e1-4d13-a7ca-a9f2e5b2adac\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"fc741fdb-c948-4e98-bfb3-23dd10397490\", \"mac_address\":\"02:00:00:14:C7:F1\", \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"bf735446-f6d3-4b4d-bf2f-866409f4bed1\", \"address\":\"172.17.108.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:54:39.706019Z\", \"updated_at\":\"2025-10-30T16:54:39.706019Z\", \"source\":{\"subnet_id\":\"468952b2-af55-4445-bbef-dd440556b291\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"fc741fdb-c948-4e98-bfb3-23dd10397490\", \"mac_address\":\"02:00:00:14:C7:F1\", \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1123" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6b17132b-1a5b-4509-96fb-4aea2d06c3f4 - status: 200 OK - code: 200 - duration: 32.729368ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3d882729-9412-4f89-a23f-20807b6a7a6c - status: 200 OK - code: 200 - duration: 20.192608ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 9401acae-e814-411a-94e8-c99e8e921d93 - status: 200 OK - code: 200 - duration: 24.87173ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6db4e597-c083-4d79-b172-38f7d12d255e - status: 200 OK - code: 200 - duration: 31.406825ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - name: - - tf-cluster-basic - order_by: - - created_at_asc - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster-basic&order_by=created_at_asc&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1667 - body: "{\"total_count\":1, \"clusters\":[{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}]}" - headers: - Content-Length: - - "1667" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 457b13a3-5767-4607-bad6-b7be179d9172 - status: 200 OK - code: 200 - duration: 111.746498ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 213ae736-84e6-4cdf-98cf-e54ff7c8fb13 - status: 200 OK - code: 200 - duration: 87.944777ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ce5ad9a4-a14c-417b-a863-985218372956 - status: 200 OK - code: 200 - duration: 20.595614ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 5ba893fc-ccbe-4732-a35b-4572d725158c - status: 200 OK - code: 200 - duration: 89.424314ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/60284594-bb0a-4343-bed9-f7375e44e80b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 428 - body: "{\"id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"name\":\"TestAccDataSourceCluster_Basic\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.728379Z\", \"updated_at\":\"2025-10-30T16:51:13.728379Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "428" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f3aa5511-8749-44a3-9505-4b2b3f9a845c - status: 200 OK - code: 200 - duration: 34.804451ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66470a27-4266-4f37-8e20-6bf15260d20b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1095 - body: "{\"id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"name\":\"test-data-source-cluster\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"468952b2-af55-4445-bbef-dd440556b291\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"172.17.108.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}, {\"id\":\"74ca9ee6-21e1-4d13-a7ca-a9f2e5b2adac\", \"created_at\":\"2025-10-30T16:51:13.852665Z\", \"updated_at\":\"2025-10-30T16:51:13.852665Z\", \"subnet\":\"fd5f:519c:6d46:2cac::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\"}], \"vpc_id\":\"60284594-bb0a-4343-bed9-f7375e44e80b\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1095" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 88e79f1d-287e-424a-b53f-76d876b71ca4 - status: 200 OK - code: 200 - duration: 27.23246ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 268d9ffb-9e4a-4407-9cbe-c002a99a2d60 - status: 200 OK - code: 200 - duration: 19.381526ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 1cd5dbf3-99a7-413d-bfac-340bfec5fab3 - status: 200 OK - code: 200 - duration: 24.229374ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 704 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:55:32.030313Z\", \"name\":\"default\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "704" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - dc0706a8-6ba2-4837-a2f6-fa3d9f883394 - status: 200 OK - code: 200 - duration: 25.371097ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - f25d3a10-ecde-4908-a90b-6527b9e25ac2 - status: 200 OK - code: 200 - duration: 26.642593ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - name: - - tf-cluster-basic - order_by: - - created_at_asc - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster-basic&order_by=created_at_asc&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1667 - body: "{\"total_count\":1, \"clusters\":[{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}]}" - headers: - Content-Length: - - "1667" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 3d7766a3-7c0c-456e-9a42-5e7ec65d9600 - status: 200 OK - code: 200 - duration: 34.373724ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 16c99ed8-da30-4867-b6a9-e35deb88ccab - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/nodes?order_by=created_at_asc&page=1&pool_id=16c99ed8-da30-4867-b6a9-e35deb88ccab&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"0171d1b9-9bd3-4f55-abaa-af8f0521b849\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:54:36.556869Z\", \"updated_at\":\"2025-10-30T16:55:32.020365Z\", \"pool_id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/d723decb-3358-416a-9104-299752ba1318\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 2457b6d8-4e44-4376-92c3-b0c13b163d82 - status: 200 OK - code: 200 - duration: 24.282464ms -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4d4bb4a7-ad6c-4749-b121-170b3282825a - status: 200 OK - code: 200 - duration: 27.113898ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - bf9e15d4-a1d7-4512-b3b8-9ba1ed882c86 - status: 200 OK - code: 200 - duration: 24.439338ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1635 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:52:52.210543Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1635" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 48b55288-e545-42b1-976c-7c6160cc13ad - status: 200 OK - code: 200 - duration: 22.08516ms -- id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1666 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWGFrTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreFRWUkJlVTlVUlRKT1ZFVjRUa1p2V0VSVVRURk5WRUY1VDFSRk1rNVVSWGhPUm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNTbkJHWkU5eGJYTmxPRlJuUVM5eUNsaEhRMnRJSzA1alQza3ZRalJ6UkdobFREZ3hVVFpSUkd0Rk4wTXZTMjFoTm5KUmNtRkdiMWhpWkRoaWNrazNaMlkyTlV0U2QxTkxUMUZrZW1vclQwd0tlV0pRYkVSRFpXcFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRlSE14U1U0M09UQkROMkpDTDJGdk1YbGFSbU5aTkVzNGRYUlVRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUlRVVJDUlVGcFJVRXhTV1JpQ2pka1JtZFlOR2hJVUV4VmFsZHFSblJ4VWpGM1UzWlVXWGxEVlRoR1p6QnlhSEI2Yms1aldVTklNMnRxZVRsemJqRmpha28yVVUwNE5XWXdlQ3ROZDBRS1pYQkJNRnBwV0VkVFlYaHFWVlZqWnpkUU1EMEtMUzB0TFMxRlRrUWdRMFZTVkVsR1NVTkJWRVV0TFMwdExRbz0KICAgIHNlcnZlcjogaHR0cHM6Ly9hNGMxNjUwNS1iZmZlLTQ3OGUtYTBkMy01ZDZhMzE5ODZlOTAuYXBpLms4cy5mci1wYXIuc2N3LmNsb3VkOjY0NDMKY29udGV4dHM6Ci0gbmFtZTogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwogIGNvbnRleHQ6CiAgICBjbHVzdGVyOiAidGYtY2x1c3Rlci1iYXNpYyIKICAgIHVzZXI6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KY3VycmVudC1jb250ZXh0OiBhZG1pbkB0Zi1jbHVzdGVyLWJhc2ljCmtpbmQ6IENvbmZpZwpwcmVmZXJlbmNlczoge30KdXNlcnM6Ci0gbmFtZTogdGYtY2x1c3Rlci1iYXNpYy1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogZGlucjJuU2FrTU5VU3lZUExJRHAyMTA4ejg4dHJGekhPTXdaeE1sWUVyeXF5cjl1Q2FSVG01Qlo=\"}" - headers: - Content-Length: - - "1666" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 4e75aa46-dd50-45e5-a340-4aa1e1652d58 - status: 200 OK - code: 200 - duration: 26.214871ms -- id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-tf-cluster-basic-default-0171d1b99bd34f55a - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-tf-cluster-basic-default-0171d1b99bd34f55a&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1123 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"75fd09c2-c088-4df6-a341-69e97c22d1d0\", \"address\":\"fd5f:519c:6d46:2cac:5439:8e0a:6e84:7c91/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:54:39.822358Z\", \"updated_at\":\"2025-10-30T16:54:39.822358Z\", \"source\":{\"subnet_id\":\"74ca9ee6-21e1-4d13-a7ca-a9f2e5b2adac\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"fc741fdb-c948-4e98-bfb3-23dd10397490\", \"mac_address\":\"02:00:00:14:C7:F1\", \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"bf735446-f6d3-4b4d-bf2f-866409f4bed1\", \"address\":\"172.17.108.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:54:39.706019Z\", \"updated_at\":\"2025-10-30T16:54:39.706019Z\", \"source\":{\"subnet_id\":\"468952b2-af55-4445-bbef-dd440556b291\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"fc741fdb-c948-4e98-bfb3-23dd10397490\", \"mac_address\":\"02:00:00:14:C7:F1\", \"name\":\"scw-tf-cluster-basic-default-0171d1b99bd34f55a\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1123" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 833812de-7c0d-4fbf-bbee-0f34aa418c33 - status: 200 OK - code: 200 - duration: 32.167562ms -- id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 707 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:55:36.632062Z\", \"name\":\"default\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "707" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d9f8d164-399b-4979-9986-4920b7c0e5dd - status: 200 OK - code: 200 - duration: 52.410355ms -- id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 707 - body: "{\"region\":\"fr-par\", \"id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\", \"cluster_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"created_at\":\"2025-10-30T16:51:20.352813Z\", \"updated_at\":\"2025-10-30T16:55:36.632062Z\", \"name\":\"default\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "707" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:55:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a3e8dff9-c7af-4a3a-a7c2-0f1c2ea030d1 - status: 200 OK - code: 200 - duration: 87.794215ms -- id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:59:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 64aebd5e-27e7-4a3c-9cba-2101a7b431d4 - status: 404 Not Found - code: 404 - duration: 22.83646ms -- id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1639 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:59:56.872905Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1639" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:59:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d0ec8d0d-c710-4b01-b48d-57c309e6e370 - status: 200 OK - code: 200 - duration: 156.315095ms -- id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1638 - body: "{\"region\":\"fr-par\", \"id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:51:14.772780Z\", \"updated_at\":\"2025-10-30T16:59:56.872905Z\", \"type\":\"kapsule\", \"name\":\"tf-cluster-basic\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"cilium\", \"tags\":[\"terraform-test\", \"data_scaleway_k8s_cluster\", \"basic\"], \"cluster_url\":\"https://a4c16505-bffe-478e-a0d3-5d6a31986e90.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.a4c16505-bffe-478e-a0d3-5d6a31986e90.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\", \"commitment_ends_at\":\"2025-10-30T16:51:14.772791Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"9e0020d0-5137-4599-9b5f-9723ae47c89a\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1638" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:59:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - a550a94b-d430-4e11-ba7b-d72f7c3eb621 - status: 200 OK - code: 200 - duration: 87.131361ms -- id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ea87dd54-3872-444d-b9bc-0f831157b44b - status: 404 Not Found - code: 404 - duration: 19.997914ms -- id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66470a27-4266-4f37-8e20-6bf15260d20b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - c455face-bfcd-403e-95e7-cce908cc4774 - status: 204 No Content - code: 204 - duration: 1.092120869s -- id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/60284594-bb0a-4343-bed9-f7375e44e80b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 6382dad8-8a8f-4768-81ca-235a35839b04 - status: 204 No Content - code: 204 - duration: 114.545469ms -- id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/16c99ed8-da30-4867-b6a9-e35deb88ccab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"16c99ed8-da30-4867-b6a9-e35deb88ccab\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - fcd00923-4f59-4c5f-a497-c10c1b8721cb - status: 404 Not Found - code: 404 - duration: 19.963087ms -- id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 11082248-8b22-421f-b05e-7cdccdfaa544 - status: 404 Not Found - code: 404 - duration: 27.896426ms -- id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - 0178e1d9-41f2-47fa-b17a-5f7764bace87 - status: 404 Not Found - code: 404 - duration: 25.535716ms -- id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/a4c16505-bffe-478e-a0d3-5d6a31986e90 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"a4c16505-bffe-478e-a0d3-5d6a31986e90\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - d3b53d5f-81f6-4de1-9302-322ad747374a - status: 404 Not Found - code: 404 - duration: 27.358277ms -- id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66470a27-4266-4f37-8e20-6bf15260d20b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"66470a27-4266-4f37-8e20-6bf15260d20b\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 17:00:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - X-Request-Id: - - ce406635-375b-4275-ac26-6f17205ffdb4 - status: 404 Not Found - code: 404 - duration: 22.040095ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ac4b8343-6684-45b2-8a4f-4399bf2d6420 + status: 200 OK + code: 200 + duration: 155.177333ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 126 + host: api.scaleway.com + body: '{"name":"TestAccDataSourceCluster_Basic","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 417 + body: '{"id":"dc7a2cf9-cd23-4470-8882-42107624cbf9","name":"TestAccDataSourceCluster_Basic","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:54.537233Z","updated_at":"2026-01-29T15:52:54.537233Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "417" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 17cfc71a-a7bb-48fb-95c4-d4f14720a7b4 + status: 200 OK + code: 200 + duration: 84.940958ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/dc7a2cf9-cd23-4470-8882-42107624cbf9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 417 + body: '{"id":"dc7a2cf9-cd23-4470-8882-42107624cbf9","name":"TestAccDataSourceCluster_Basic","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:54.537233Z","updated_at":"2026-01-29T15:52:54.537233Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "417" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 96d74365-afa6-4131-8ea6-4c6476d1ac30 + status: 200 OK + code: 200 + duration: 52.683083ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 202 + host: api.scaleway.com + body: '{"name":"test-data-source-cluster","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","tags":[],"subnets":null,"vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1069 + body: '{"id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","name":"test-data-source-cluster","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","subnets":[{"id":"f7408809-d2e2-4a70-9528-b543ea7a8298","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","subnet":"172.16.0.0/22","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9"},{"id":"d5edf67b-de5a-4cad-998e-7e4ae03501ea","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","subnet":"fd49:821a:a311:f207::/64","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9"}],"vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1069" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b9beb881-fcb0-45f1-9d3d-f95de282f97c + status: 200 OK + code: 200 + duration: 674.379292ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fd5e67b7-c340-44fa-b047-ebe26c429cab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1069 + body: '{"id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","name":"test-data-source-cluster","tags":[],"organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","subnets":[{"id":"f7408809-d2e2-4a70-9528-b543ea7a8298","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","subnet":"172.16.0.0/22","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9"},{"id":"d5edf67b-de5a-4cad-998e-7e4ae03501ea","created_at":"2026-01-29T15:52:54.668392Z","updated_at":"2026-01-29T15:52:54.668392Z","subnet":"fd49:821a:a311:f207::/64","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9"}],"vpc_id":"dc7a2cf9-cd23-4470-8882-42107624cbf9","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1069" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0d26a0ef-1810-42b4-b033-0a82945d67e1 + status: 200 OK + code: 200 + duration: 51.116041ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 700 + host: api.scaleway.com + body: '{"project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","type":"","name":"tf-cluster-basic","description":"","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"version":"1.35.0","cni":"cilium","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1528 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:55.660965Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1528" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8963f8b6-3914-4626-b52d-b3758cd7eb62 + status: 200 OK + code: 200 + duration: 351.603958ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1528 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:55.660965Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1528" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:52:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 72666ba4-3715-4fc3-af77-dc7192d8b262 + status: 200 OK + code: 200 + duration: 43.030583ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1569 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:56.135586Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1569" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6ddc7526-0344-4f5e-8020-0b3b892a7e1f + status: 200 OK + code: 200 + duration: 57.198208ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8eef6349-1a4a-45c8-9f21-490110a0158d + status: 200 OK + code: 200 + duration: 41.788875ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1569 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:56.135586Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1569" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5c0da0f5-814c-474c-8a31-13cff514bf4c + status: 200 OK + code: 200 + duration: 34.8585ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1668 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRGT1ZFa3hUbFp2V0VSVVRUSk5SRVY1VDBSRk1VNVVTVEZPVm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUREpYY0V0RmVYY3ZSbFkwZEZaT0NqUnNLMnhsVG1oQlJWZFVUeTgxWVVrcldHTkJXV0V4TmxGTFdWVkpkRTExTm5kUkx6aFhVRlp0YmxCV1lqTmhRMFJKTjFCdGVHRktTSHBNYTBaaGRXMEtjblp5WmtsaFEycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRTa1ZJY2s1dU9FVldORzV2YTNSeVdYWXdaRFV2ZW1KUFYzaDZRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRjJjVEE0Q2xZd1dtdFhaMkZSTW5CS1JGbEhhR3h1U3pWMGJrMUtjQ3QzWW1jeEswbHFORFkyUlZFek9FTkpVVVJGVUd0dlkzSm9hWGhoY0ZWdFdrUlRRazF1WXpnS01XWXJiVmQ0YWxSWGVIVTRZMVUzU1V0d05HbHZVVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzlkNjM4ZDQtOTU3ZS00ZTQ1LThlMWQtMTk5MzcyNjdjZDg0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRmLWNsdXN0ZXItYmFzaWMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRmLWNsdXN0ZXItYmFzaWMiCiAgICB1c2VyOiB0Zi1jbHVzdGVyLWJhc2ljLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEc2SE83ejJSczNOazR1TFBsbGRjeGFMSW9Bdlh0bUxoaUw2U084bVY2ZzFNQ1RFQVQ0Y0E2U0sy"}' + headers: + Content-Length: + - "1668" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8c94dd3b-8608-4751-ac47-4acfbf266446 + status: 200 OK + code: 200 + duration: 51.752209ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/fr-par/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 23 + body: '{"message":"Not Found"}' + headers: + Content-Length: + - "23" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f0d4deb2-0975-49d9-a14d-070a5f9f9b84 + status: 404 Not Found + code: 404 + duration: 13.105958ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1569 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:56.135586Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1569" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ebd4e6cb-2ad3-42ba-accd-cc44d27d45bc + status: 200 OK + code: 200 + duration: 20.458709ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + name: + - tf-cluster-basic + order_by: + - created_at_asc + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters?name=tf-cluster-basic&order_by=created_at_asc&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1600 + body: '{"total_count":1,"clusters":[{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:52:56.135586Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"pool_required","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}]}' + headers: + Content-Length: + - "1600" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 15c79d49-0cc1-4928-a4ae-87199ed6c166 + status: 200 OK + code: 200 + duration: 525.826125ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 261 + host: api.scaleway.com + body: '{"name":"default","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84/pools + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 35f3e67d-b36a-4363-96aa-7bcda879fe1b + status: 200 OK + code: 200 + duration: 537.120209ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f9740261-c378-4515-9782-6578d495bedb + status: 200 OK + code: 200 + duration: 33.164833ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cce3aedd-1f49-4c1c-9fd9-bce1e3cc24e2 + status: 200 OK + code: 200 + duration: 26.437958ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f114f22e-17c8-4586-a396-bc6d8b47208c + status: 200 OK + code: 200 + duration: 42.251375ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 63a655df-6b2b-48aa-a642-5de1f15524b7 + status: 200 OK + code: 200 + duration: 29.767125ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8939a641-3ba6-4422-b2c9-a7dc49811e38 + status: 200 OK + code: 200 + duration: 43.213917ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - eefa4650-94a0-408e-8d14-98bca2f83bb1 + status: 200 OK + code: 200 + duration: 29.299625ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d36cfb07-1edd-4f4c-b89f-3762a28744ed + status: 200 OK + code: 200 + duration: 43.406875ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - dd82500d-98fe-4d10-aba2-9a592ce23631 + status: 200 OK + code: 200 + duration: 44.534541ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d65345d0-c5ca-4635-b04e-8e5cddd021a9 + status: 200 OK + code: 200 + duration: 47.530833ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c47b9a21-1b67-4031-b1d2-a34a26959ce6 + status: 200 OK + code: 200 + duration: 48.259ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 72858883-04f8-44a4-9659-9fff340be448 + status: 200 OK + code: 200 + duration: 45.606ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 72e212e9-b1a9-4da1-be17-0d4bfdd80d27 + status: 200 OK + code: 200 + duration: 49.315542ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1e629ac5-5960-4452-aaf0-7bb288ae0cc0 + status: 200 OK + code: 200 + duration: 30.363542ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1f5b0242-d6b7-4982-9f3b-5dbd9c29751b + status: 200 OK + code: 200 + duration: 45.849375ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - aa32e585-eb1a-48a5-9ee2-8da8cab9f6b3 + status: 200 OK + code: 200 + duration: 42.348875ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a54290a7-9f9c-4573-93e0-db42b6ebb390 + status: 200 OK + code: 200 + duration: 42.656292ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 277f8593-a707-4344-9529-8ec3be23595d + status: 200 OK + code: 200 + duration: 56.875167ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a7da9685-55ee-4d2b-a863-41762d01025b + status: 200 OK + code: 200 + duration: 46.690458ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 523f0939-5797-4bbd-aa35-1989f1575892 + status: 200 OK + code: 200 + duration: 43.883041ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - dd683466-7563-4c54-9a61-c1d4f405f0f5 + status: 200 OK + code: 200 + duration: 42.055958ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0ac5a27c-4b93-4545-b45d-bada8cc8b680 + status: 200 OK + code: 200 + duration: 47.684833ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:51 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a3d529a4-f850-42d1-991f-44821a3be6ad + status: 200 OK + code: 200 + duration: 48.297166ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ac232923-e24b-4355-9db2-09b87a6782a3 + status: 200 OK + code: 200 + duration: 51.009042ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:53:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e36d5d9b-963c-490c-a268-0adab178bfbe + status: 200 OK + code: 200 + duration: 54.243458ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - aa73565a-dd4f-46a0-be99-3b6ba717312d + status: 200 OK + code: 200 + duration: 47.298166ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ec6da5b1-c17a-4ab9-af48-e60d1e66c1ee + status: 200 OK + code: 200 + duration: 52.770084ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 19e95229-8370-45d6-bdb4-9479f81176c7 + status: 200 OK + code: 200 + duration: 36ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 45071e0c-f6dd-4cb7-bc6d-b47701ae50a7 + status: 200 OK + code: 200 + duration: 43.7705ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - eb80801e-7c4a-4693-9735-c99039013b38 + status: 200 OK + code: 200 + duration: 40.549208ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:53:01.033350Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"creating","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cf4ebc45-2871-4a03-ba18-560c490cc691 + status: 200 OK + code: 200 + duration: 38.224875ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1561 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:54:14.959217Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1561" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b7ab3a02-d094-4cf8-9231-2b0bb61eaa19 + status: 200 OK + code: 200 + duration: 62.824333ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5d65e8ea-5a70-40f8-a37c-b48bccbf378c + status: 200 OK + code: 200 + duration: 64.456041ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1668 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRmLWNsdXN0ZXItYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VKWVJFTkRRVkZIWjBGM1NVSkJaMGxDUVVSQlMwSm5aM0ZvYTJwUFVGRlJSRUZxUVZaTlVrMTNSVkZaUkZaUlVVUkZkM0J5WkZkS2JHTnROV3dLWkVkV2VrMUNORmhFVkVreVRVUkZlVTlFUlRGT1ZFa3hUbFp2V0VSVVRUSk5SRVY1VDBSRk1VNVVTVEZPVm05M1JsUkZWRTFDUlVkQk1WVkZRWGhOU3dwaE0xWnBXbGhLZFZwWVVteGpla0phVFVKTlIwSjVjVWRUVFRRNVFXZEZSME5EY1VkVFRUUTVRWGRGU0VFd1NVRkNUREpYY0V0RmVYY3ZSbFkwZEZaT0NqUnNLMnhsVG1oQlJWZFVUeTgxWVVrcldHTkJXV0V4TmxGTFdWVkpkRTExTm5kUkx6aFhVRlp0YmxCV1lqTmhRMFJKTjFCdGVHRktTSHBNYTBaaGRXMEtjblp5WmtsaFEycFJha0pCVFVFMFIwRXhWV1JFZDBWQ0wzZFJSVUYzU1VOd1JFRlFRbWRPVmtoU1RVSkJaamhGUWxSQlJFRlJTQzlOUWpCSFFURlZaQXBFWjFGWFFrSlRTa1ZJY2s1dU9FVldORzV2YTNSeVdYWXdaRFV2ZW1KUFYzaDZRVXRDWjJkeGFHdHFUMUJSVVVSQlowNUtRVVJDUjBGcFJVRjJjVEE0Q2xZd1dtdFhaMkZSTW5CS1JGbEhhR3h1U3pWMGJrMUtjQ3QzWW1jeEswbHFORFkyUlZFek9FTkpVVVJGVUd0dlkzSm9hWGhoY0ZWdFdrUlRRazF1WXpnS01XWXJiVmQ0YWxSWGVIVTRZMVUzU1V0d05HbHZVVDA5Q2kwdExTMHRSVTVFSUVORlVsUkpSa2xEUVZSRkxTMHRMUzBLCiAgICBzZXJ2ZXI6IGh0dHBzOi8vYzlkNjM4ZDQtOTU3ZS00ZTQ1LThlMWQtMTk5MzcyNjdjZDg0LmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRmLWNsdXN0ZXItYmFzaWMKICBjb250ZXh0OgogICAgY2x1c3RlcjogInRmLWNsdXN0ZXItYmFzaWMiCiAgICB1c2VyOiB0Zi1jbHVzdGVyLWJhc2ljLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGYtY2x1c3Rlci1iYXNpYwpraW5kOiBDb25maWcKcHJlZmVyZW5jZXM6IHt9CnVzZXJzOgotIG5hbWU6IHRmLWNsdXN0ZXItYmFzaWMtYWRtaW4KICB1c2VyOgogICAgdG9rZW46IEc2SE83ejJSczNOazR1TFBsbGRjeGFMSW9Bdlh0bUxoaUw2U084bVY2ZzFNQ1RFQVQ0Y0E2U0sy"}' + headers: + Content-Length: + - "1668" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 04c2a2dc-0e66-42ac-bdf0-1187c261b334 + status: 200 OK + code: 200 + duration: 44.860708ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6bb8c904-8154-495e-b906-a6d1e7c15939 + status: 200 OK + code: 200 + duration: 43.105125ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4720ba2a-32bd-4dcf-aa9f-ed0fd63d1d73 + status: 200 OK + code: 200 + duration: 40.885917ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 69893a6b-5d7c-42cf-a48e-1c5d2271ceba + status: 200 OK + code: 200 + duration: 34.23575ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4daf8cf5-6943-451d-ab32-8c1aaab3cc64 + status: 200 OK + code: 200 + duration: 48.121166ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 325f7b8c-a78b-499d-b785-6239e2ceb9ec + status: 200 OK + code: 200 + duration: 39.537375ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 82f86244-7c70-46b1-ac21-aa25d0cee658 + status: 200 OK + code: 200 + duration: 32.596792ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f225c60b-a8dd-41a6-836d-f68a90ee0bc2 + status: 200 OK + code: 200 + duration: 28.4065ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:54:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c06b9716-5e95-44bf-93e8-3f415951fe3d + status: 200 OK + code: 200 + duration: 45.345708ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cc3f944b-2da7-4350-bca1-fcd2a83df230 + status: 200 OK + code: 200 + duration: 39.559ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - dc97fb94-f462-4985-bc61-84be04fcd9fe + status: 200 OK + code: 200 + duration: 44.916083ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cf94de40-e124-48be-ada7-7cfdb9e2f663 + status: 200 OK + code: 200 + duration: 35.820333ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - abbfb069-95c6-41b3-bc70-8adba462460b + status: 200 OK + code: 200 + duration: 46.284209ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 699 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:53:01.033350Z","name":"default","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "699" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1e54c473-e672-41e6-baad-915bad13e366 + status: 200 OK + code: 200 + duration: 33.899084ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 697 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:26.857901Z","name":"default","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "697" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d21f1755-8dd9-432d-92d1-40bbeb844412 + status: 200 OK + code: 200 + duration: 53.934833ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1561 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:54:14.959217Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1561" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1d91e2ee-8a18-4119-9f1d-7f02e8f8044f + status: 200 OK + code: 200 + duration: 43.311209ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 697 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:26.857901Z","name":"default","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "697" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 15c81962-aee3-4f53-936f-2e506baab944 + status: 200 OK + code: 200 + duration: 22.614125ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - c6712aa3-6409-465a-90ac-9bb9d74d832e + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84/nodes?order_by=created_at_asc&page=1&pool_id=c6712aa3-6409-465a-90ac-9bb9d74d832e&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 604 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"ababb1cf-fa50-4600-8fe5-3e95b15cc2a6","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:54:21.948143Z","updated_at":"2026-01-29T15:55:26.845119Z","pool_id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-tf-cluster-basic-default-ababb1cffa5046008","public_ip_v4":"51.158.109.166","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/462a7dfa-1775-4aa1-a4bb-25b36c537f7d","error_message":""}]}' + headers: + Content-Length: + - "604" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d2685580-ec24-48d6-a1d9-67f8292f5d4f + status: 200 OK + code: 200 + duration: 28.0685ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1561 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:54:14.959217Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1561" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 8984389b-c19c-4e41-9273-ebb2d4a549b7 + status: 200 OK + code: 200 + duration: 23.6565ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 951df375-e094-4d26-97c1-ba548eeb9c42 + resource_name: + - scw-tf-cluster-basic-default-ababb1cffa5046008 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=951df375-e094-4d26-97c1-ba548eeb9c42&resource_name=scw-tf-cluster-basic-default-ababb1cffa5046008&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1091 + body: '{"total_count":2,"ips":[{"id":"978db02b-1dba-4ca4-9d2c-49f9361868ec","address":"fd49:821a:a311:f207:bd41:dd18:9e4b:adf4/64","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","is_ipv6":true,"created_at":"2026-01-29T15:54:24.851731Z","updated_at":"2026-01-29T15:54:24.851731Z","source":{"subnet_id":"d5edf67b-de5a-4cad-998e-7e4ae03501ea"},"resource":{"type":"instance_private_nic","id":"f18516d7-88ad-4904-9a39-77f9791ec591","mac_address":"02:00:00:15:57:E9","name":"scw-tf-cluster-basic-default-ababb1cffa5046008"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"9d43be7a-6647-441e-93c4-3a67d5e74b4c","address":"172.16.0.3/22","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","is_ipv6":false,"created_at":"2026-01-29T15:54:24.751108Z","updated_at":"2026-01-29T15:54:24.751108Z","source":{"subnet_id":"f7408809-d2e2-4a70-9528-b543ea7a8298"},"resource":{"type":"instance_private_nic","id":"f18516d7-88ad-4904-9a39-77f9791ec591","mac_address":"02:00:00:15:57:E9","name":"scw-tf-cluster-basic-default-ababb1cffa5046008"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1091" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b3afa3a6-d34d-47a2-8f84-57c34dc98f33 + status: 200 OK + code: 200 + duration: 66.25275ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1561 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:54:14.959217Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"ready","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1561" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 71775925-cf83-4d88-84e6-58b7a4024f9e + status: 200 OK + code: 200 + duration: 21.3495ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ab670351-8a52-4c7d-9500-600c7f39d5f5 + status: 200 OK + code: 200 + duration: 81.37775ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - de136d28-002e-4d33-95c5-2df8a051f8e7 + status: 200 OK + code: 200 + duration: 21.579708ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - bf1e4a79-f7f3-4fd0-8caf-9d210e5a24a1 + status: 200 OK + code: 200 + duration: 50.576833ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:55:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - da36ed41-db03-4e1b-bd64-306d0ffcda9e + status: 200 OK + code: 200 + duration: 42.534ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4cc7371e-2531-4561-856d-44fabccd181e + status: 200 OK + code: 200 + duration: 55.765167ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 700 + body: '{"region":"fr-par","id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","cluster_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","created_at":"2026-01-29T15:53:01.033350Z","updated_at":"2026-01-29T15:55:28.491015Z","name":"default","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":[],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"9c112286-dc28-4a93-b195-5410396ef0a0","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "700" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7abb8c51-bbd2-4230-88d7-0c55c7029f17 + status: 200 OK + code: 200 + duration: 55.215709ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: '{"message":"resource is not found","resource":"pool","resource_id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","type":"not_found"}' + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4a8db27d-c99c-4c81-ad2e-12861967d51c + status: 404 Not Found + code: 404 + duration: 33.80725ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:56:43.856980Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 64ccf7e5-dd03-49da-b533-feeb23d4a245 + status: 200 OK + code: 200 + duration: 148.88925ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1564 + body: '{"region":"fr-par","id":"c9d638d4-957e-4e45-8e1d-19937267cd84","organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42","project_id":"951df375-e094-4d26-97c1-ba548eeb9c42","created_at":"2026-01-29T15:52:55.660965Z","updated_at":"2026-01-29T15:56:43.856980Z","type":"kapsule","name":"tf-cluster-basic","description":"","status":"deleting","version":"1.35.0","cni":"cilium","tags":["terraform-test","data_scaleway_k8s_cluster","basic"],"cluster_url":"https://c9d638d4-957e-4e45-8e1d-19937267cd84.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.c9d638d4-957e-4e45-8e1d-19937267cd84.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"fd5e67b7-c340-44fa-b047-ebe26c429cab","commitment_ends_at":"2026-01-29T15:52:55.660973Z","acl_available":true,"iam_nodes_group_id":"c7a9bd16-dd2b-4722-a315-399a4c449302","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1564" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d654641b-75cb-4ce2-8b99-a714b1479430 + status: 200 OK + code: 200 + duration: 53.666166ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0123fbd0-1d44-4334-bef4-a7420444deb4 + status: 404 Not Found + code: 404 + duration: 37.208958ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/fd5e67b7-c340-44fa-b047-ebe26c429cab + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 24326b9f-8e3a-4844-9741-fe9721ddcda1 + status: 204 No Content + code: 204 + duration: 1.198045667s + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/dc7a2cf9-cd23-4470-8882-42107624cbf9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 83f4a878-1c12-41bf-b150-462af0689231 + status: 204 No Content + code: 204 + duration: 374.02675ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/c6712aa3-6409-465a-90ac-9bb9d74d832e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: '{"message":"resource is not found","resource":"pool","resource_id":"c6712aa3-6409-465a-90ac-9bb9d74d832e","type":"not_found"}' + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 03b04724-2f62-448a-9ae0-701b3231dc05 + status: 404 Not Found + code: 404 + duration: 26.389584ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f919304d-4cae-4702-bfcd-aa103c450bf3 + status: 404 Not Found + code: 404 + duration: 29.078291ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/c9d638d4-957e-4e45-8e1d-19937267cd84 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"c9d638d4-957e-4e45-8e1d-19937267cd84","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 15:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c8d6b2a7-be33-4bd6-b1dc-7d928656adb0 + status: 404 Not Found + code: 404 + duration: 24.82675ms diff --git a/internal/services/k8s/testdata/pool-basic.cassette.yaml b/internal/services/k8s/testdata/pool-basic.cassette.yaml index eb4a1cc2a9..26861cdbe3 100644 --- a/internal/services/k8s/testdata/pool-basic.cassette.yaml +++ b/internal/services/k8s/testdata/pool-basic.cassette.yaml @@ -1,3574 +1,5032 @@ --- version: 2 interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 4476 - body: "{\"versions\":[{\"region\":\"fr-par\", \"name\":\"1.34.1\", \"label\":\"Kubernetes 1.34.1\", \"available_cnis\":[\"cilium\", \"cilium_native\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-29T00:00:00Z\", \"end_of_life_at\":\"2026-11-29T00:00:00Z\", \"released_at\":\"2025-09-29T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.33.4\", \"label\":\"Kubernetes 1.33.4\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"DRAAdminAccess\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-09-04T00:00:00Z\", \"end_of_life_at\":\"2026-11-04T00:00:00Z\", \"released_at\":\"2025-09-04T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.32.8\", \"label\":\"Kubernetes 1.32.8\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"DRAAdminAccess\", \"DRAResourceClaimDeviceStatus\", \"DynamicResourceAllocation\", \"PodLevelResources\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2026-03-24T00:00:00Z\", \"end_of_life_at\":\"2025-05-24T00:00:00Z\", \"released_at\":\"2025-03-24T00:00:00Z\"}, {\"region\":\"fr-par\", \"name\":\"1.31.12\", \"label\":\"Kubernetes 1.31.12\", \"available_cnis\":[\"cilium\", \"calico\", \"kilo\", \"none\"], \"available_container_runtimes\":[\"containerd\"], \"available_feature_gates\":[\"HPAScaleToZero\", \"InPlacePodVerticalScaling\", \"SidecarContainers\", \"CPUManagerPolicyAlphaOptions\", \"ImageVolume\"], \"available_admission_plugins\":[\"AlwaysPullImages\", \"PodNodeSelector\", \"PodTolerationRestriction\"], \"available_kubelet_args\":{\"containerLogMaxFiles\":\"uint16\", \"containerLogMaxSize\":\"quantity\", \"cpuCFSQuota\":\"bool\", \"cpuCFSQuotaPeriod\":\"duration\", \"cpuManagerPolicy\":\"enum:none|static\", \"cpuManagerPolicyOptions\":\"map[string]string\", \"enableDebuggingHandlers\":\"bool\", \"evictionHard\":\"map[string]string\", \"evictionMinimumReclaim\":\"map[string]string\", \"imageGCHighThresholdPercent\":\"uint32\", \"imageGCLowThresholdPercent\":\"uint32\", \"maxParallelImagePulls\":\"int32\", \"maxPods\":\"uint16\", \"registryBurst\":\"int32\", \"registryPullQPS\":\"int32\", \"serializeImagePulls\":\"bool\"}, \"deprecated_at\":\"2025-12-02T00:00:00Z\", \"end_of_life_at\":\"2026-02-02T00:00:00Z\", \"released_at\":\"2024-12-02T00:00:00Z\"}]}" - headers: - Content-Length: - - "4476" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ca3fa79d-4fe7-47c4-9e92-a771cca4e2a4 - status: 200 OK - code: 200 - duration: 18.613774ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - host: api.scaleway.com - body: "{\"name\":\"tf-vpc-friendly-williams\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"enable_routing\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 526e3ee3-0440-4cca-9019-16cbc3c939fb - status: 200 OK - code: 200 - duration: 80.321999ms -- id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":0, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c2e8a0f-3c0c-4e2c-9dc9-684a42a6198e - status: 200 OK - code: 200 - duration: 25.25042ms -- id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 195 - host: api.scaleway.com - body: "{\"name\":\"test-pool-minimal\",\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"tags\":[],\"subnets\":null,\"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\",\"default_route_propagation_enabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7ab7f183-7774-4d02-8325-5b62d8837fd0 - status: 200 OK - code: 200 - duration: 683.06304ms -- id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 634a57c2-9e38-4a64-8a3e-dd16e4be9125 - status: 200 OK - code: 200 - duration: 25.665379ms -- id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 698 - host: api.scaleway.com - body: "{\"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\",\"type\":\"\",\"name\":\"test-pool-minimal\",\"description\":\"\",\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"minimal\"],\"version\":\"1.34.1\",\"cni\":\"calico\",\"pools\":null,\"autoscaler_config\":{\"scale_down_disabled\":null,\"scale_down_delay_after_add\":null,\"estimator\":\"unknown_estimator\",\"expander\":\"unknown_expander\",\"ignore_daemonsets_utilization\":null,\"balance_similar_node_groups\":null,\"expendable_pods_priority_cutoff\":0,\"scale_down_unneeded_time\":null,\"scale_down_utilization_threshold\":null,\"max_graceful_termination_sec\":0},\"feature_gates\":[],\"admission_plugins\":[],\"apiserver_cert_sans\":[],\"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\"}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1601 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:18:48.262115Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1601" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b6c240a5-73dc-4ee0-82d2-a33da71309f5 - status: 200 OK - code: 200 - duration: 340.875208ms -- id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1600 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:18:48.262115Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"creating\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1600" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a513df2-6b6e-4c1c-a72e-f7628fde2dcb - status: 200 OK - code: 200 - duration: 85.998773ms -- id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:18:48.774655Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f0397dff-cbd9-41d8-8df0-38dc37f03328 - status: 200 OK - code: 200 - duration: 83.983602ms -- id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/pools?order_by=created_at_asc&page=1&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 29 - body: "{\"total_count\":0, \"pools\":[]}" - headers: - Content-Length: - - "29" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6c500c6c-f5cb-40f4-8195-7f85f8553a86 - status: 200 OK - code: 200 - duration: 23.296373ms -- id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:18:48.774655Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a1403924-f347-4d9e-a2b9-561b9466c6e2 - status: 200 OK - code: 200 - duration: 20.437237ms -- id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6db90f63-78c1-4d4c-84cc-5efd115b052e - status: 200 OK - code: 200 - duration: 103.508687ms -- id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1641 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:18:48.774655Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"pool_required\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1641" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8029f70d-244f-4a57-a1ed-1de45dc72e9d - status: 200 OK - code: 200 - duration: 24.922275ms -- id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 320 - host: api.scaleway.com - body: "{\"name\":\"test-pool-minimal\",\"node_type\":\"pro2_xxs\",\"autoscaling\":true,\"size\":1,\"min_size\":1,\"max_size\":1,\"container_runtime\":\"containerd\",\"autohealing\":true,\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"default\"],\"kubelet_args\":{},\"zone\":\"fr-par-1\",\"root_volume_type\":\"default_volume_type\",\"public_ip_disabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/pools - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:18:53.744787Z\", \"name\":\"test-pool-minimal\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6b91f498-66a8-4d29-bea2-d0ba646cc8be - status: 200 OK - code: 200 - duration: 183.298677ms -- id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:18:53.744787Z\", \"name\":\"test-pool-minimal\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:18:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 18ce2c54-a98e-4ae2-af95-9dbe6c001f4f - status: 200 OK - code: 200 - duration: 21.994329ms -- id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5d7ca29c-ca34-458f-98fd-5bccb9e9bcfd - status: 200 OK - code: 200 - duration: 110.68699ms -- id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f9cc151-bc30-4869-befd-9f47a0ee95c0 - status: 200 OK - code: 200 - duration: 25.465433ms -- id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 482da155-7a1b-4b17-b27d-f2e91b44002a - status: 200 OK - code: 200 - duration: 95.201456ms -- id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 619 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:25:33.345091Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dd488fcb-2539-4960-8ee7-5c3dd0aeb6c1 - status: 200 OK - code: 200 - duration: 28.043513ms -- id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ec3e6ceb-542f-41f2-b734-a1e38d236ff6 - status: 200 OK - code: 200 - duration: 20.462675ms -- id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - dfa8488e-527a-40d9-980f-00bfdd167a30 - status: 200 OK - code: 200 - duration: 49.703434ms -- id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 64d1d56f-4e72-4fe4-83e3-09e86f54a60d - status: 200 OK - code: 200 - duration: 23.37466ms -- id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3c34ba54-b90a-4a7a-9e7b-973b19899d5c - status: 200 OK - code: 200 - duration: 20.940803ms -- id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 619 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:25:33.345091Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa91acdc-ad1b-425b-9db7-104140f86ee4 - status: 200 OK - code: 200 - duration: 43.860318ms -- id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb51e515-671f-4e80-875b-52c3de6157e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 3815 - body: "{\"server\": {\"id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"name\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"arch\": \"x86_64\", \"commercial_type\": \"PRO2-XXS\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"image\": {\"id\": \"5b4b5f3f-c2a1-451e-8603-4c0179b4de03\", \"name\": \"k8s_base_node_instance\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"c6b09a14-4a4d-44cd-a772-4f235fef4826\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-27T10:01:33.994085+00:00\", \"modification_date\": \"2025-10-27T10:01:33.994085+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": true, \"volume_type\": \"sbs_volume\", \"id\": \"bbd33d9f-6a04-4271-be87-174a742b855c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"pool=76a92752-3eea-4625-b05e-532277914a3a\", \"pool-name=test-pool-minimal\", \"runtime=containerd\", \"managed=true\", \"terraform-test\", \"scaleway_k8s_cluster\", \"default\", \"node=21553d0d-15c0-4b71-b557-7efd0d478398\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, \"public_ips\": [{\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, {\"id\": \"6e0fde74-7588-46f5-9ca0-c0791b471188\", \"address\": \"2001:bc8:710:404b:dc00:ff:fed0:7057\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:7058\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"2df7f8b1-6bd3-43dd-b660-b453c3836e98\"}], \"mac_address\": \"de:00:00:d0:70:57\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T16:24:58.918229+00:00\", \"modification_date\": \"2025-10-30T16:25:05.142326+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"4ef16f7a-478c-4b72-b932-982f4b04974b\", \"name\": \"Kapsule default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"12\", \"hypervisor_id\": \"101\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"private_network_id\": \"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"server_id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"mac_address\": \"02:00:00:1a:35:26\", \"state\": \"available\", \"creation_date\": \"2025-10-30T16:25:01.398380+00:00\", \"modification_date\": \"2025-10-30T16:25:01.565852+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"28c1d7a8-0419-4979-8eec-043331fe2c84\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "3815" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 3fe0ff5c-f8d5-43ab-8636-85e66bd227df - status: 200 OK - code: 200 - duration: 176.624041ms -- id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9e5174e4-9a36-4be8-9d01-936649ea8cfd - status: 200 OK - code: 200 - duration: 23.754283ms -- id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5671f70a-7ced-4a7f-8c1e-567acc4a2b36 - status: 200 OK - code: 200 - duration: 23.90783ms -- id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6b60025-f75a-430e-9b5b-1225626f60b5 - status: 200 OK - code: 200 - duration: 23.8383ms -- id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4bc12707-fac2-4b92-bb55-fa9e00bbe43e - status: 200 OK - code: 200 - duration: 91.60159ms -- id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 08471a96-9a37-4bc0-9e87-48917949f604 - status: 200 OK - code: 200 - duration: 23.830085ms -- id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 619 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:25:33.345091Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ef1cb49d-83aa-4aff-95a7-6658936359f2 - status: 200 OK - code: 200 - duration: 30.189109ms -- id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e1fe7821-dde5-4a14-b17e-6dc0c6f9741c - status: 200 OK - code: 200 - duration: 80.016908ms -- id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0a6fe746-2bd1-4bb6-aa4d-a7e2ccdfc520 - status: 200 OK - code: 200 - duration: 34.080042ms -- id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4e8be5a7-9d34-4dbb-b6b7-78508a98a800 - status: 200 OK - code: 200 - duration: 26.779019ms -- id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4048d400-05fd-49c1-a43b-e2d7c8370f7b - status: 200 OK - code: 200 - duration: 22.365206ms -- id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 414fc5ac-c3cf-4c64-925c-cf418b67fcab - status: 200 OK - code: 200 - duration: 99.646598ms -- id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f214c93b-fb83-4127-b21c-160de3791206 - status: 200 OK - code: 200 - duration: 100.79838ms -- id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b01393a-fac1-4544-b46f-b2f3ef1040c0 - status: 200 OK - code: 200 - duration: 22.621216ms -- id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 619 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:25:33.345091Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "619" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 004b2690-272b-4bd2-a15b-cf1d46a91288 - status: 200 OK - code: 200 - duration: 41.280957ms -- id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fe6dc0e1-9e01-4b25-9015-39dd5ece1890 - status: 200 OK - code: 200 - duration: 21.594108ms -- id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4020a109-583d-4507-af42-7d8aa731818f - status: 200 OK - code: 200 - duration: 25.361279ms -- id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c54ccde2-f9a6-46aa-a6fe-f22d2fd30409 - status: 200 OK - code: 200 - duration: 30.159674ms -- id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 322 - host: api.scaleway.com - body: "{\"name\":\"test-pool-minimal-2\",\"node_type\":\"pro2_xxs\",\"autoscaling\":true,\"size\":1,\"min_size\":1,\"max_size\":1,\"container_runtime\":\"containerd\",\"autohealing\":true,\"tags\":[\"terraform-test\",\"scaleway_k8s_cluster\",\"minimal\"],\"kubelet_args\":{},\"zone\":\"fr-par-1\",\"root_volume_type\":\"default_volume_type\",\"public_ip_disabled\":false}" - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/pools - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 769 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:25:38.114247Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "769" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50275021-276d-47d4-ad8c-bb0ce1e1375f - status: 200 OK - code: 200 - duration: 136.084576ms -- id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 769 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:25:38.114247Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"scaling\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "769" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:25:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - aa5be9c9-2e24-4523-ab61-4146d687f9e4 - status: 200 OK - code: 200 - duration: 20.658943ms -- id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:51.176616Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f2c2dcc-9914-463a-b39c-863142d0df93 - status: 200 OK - code: 200 - duration: 99.099943ms -- id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1af88b9d-a50b-4c75-8653-f54ebee0d17f - status: 200 OK - code: 200 - duration: 95.72046ms -- id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:51.176616Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 625ec0b2-b462-47a9-90ec-5a061a4e4461 - status: 200 OK - code: 200 - duration: 22.862619ms -- id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=329660c2-2ae9-4907-a4cc-c8ae7ce7ca37&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"a34ec0fd-a4f8-487d-813f-5d14369a67cf\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.865038Z\", \"updated_at\":\"2025-10-30T16:26:51.162742Z\", \"pool_id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/3e5635e7-8f2f-42aa-a116-98563cdca504\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 85f08e00-4b27-4cf0-a661-aa47d271850d - status: 200 OK - code: 200 - duration: 28.886976ms -- id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d5baba83-1f10-49e7-9fdf-f43bdb8dd75b - status: 200 OK - code: 200 - duration: 25.242847ms -- id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minima-test-pool-minimal--a34ec0 - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--a34ec0&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"7102e233-ba57-4ba2-b095-2185253ca639\", \"address\":\"fd5f:519c:6d46:22e5:262f:9818:9285:6eef/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:41.959447Z\", \"updated_at\":\"2025-10-30T16:25:41.959447Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"1eba195d-6bd2-4600-8adb-69d607981d6f\", \"address\":\"172.18.88.4/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:41.841664Z\", \"updated_at\":\"2025-10-30T16:25:41.841664Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 95a8e94f-100b-4628-b3d3-60c2f2f11b77 - status: 200 OK - code: 200 - duration: 40.654872ms -- id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5cb93efc-fdcc-4108-93df-8bb83f708aae - status: 200 OK - code: 200 - duration: 20.808814ms -- id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:51.176616Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8276989c-afe9-418a-99da-6683c24d6db3 - status: 200 OK - code: 200 - duration: 23.027439ms -- id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 649 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:26:51.139802Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"NetworkUnavailable\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "649" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 202c1bf0-1807-4973-b37d-06b2fbdd37b4 - status: 200 OK - code: 200 - duration: 33.788766ms -- id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb51e515-671f-4e80-875b-52c3de6157e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 3815 - body: "{\"server\": {\"id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"name\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"arch\": \"x86_64\", \"commercial_type\": \"PRO2-XXS\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"image\": {\"id\": \"5b4b5f3f-c2a1-451e-8603-4c0179b4de03\", \"name\": \"k8s_base_node_instance\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"c6b09a14-4a4d-44cd-a772-4f235fef4826\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-27T10:01:33.994085+00:00\", \"modification_date\": \"2025-10-27T10:01:33.994085+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": true, \"volume_type\": \"sbs_volume\", \"id\": \"bbd33d9f-6a04-4271-be87-174a742b855c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"pool=76a92752-3eea-4625-b05e-532277914a3a\", \"pool-name=test-pool-minimal\", \"runtime=containerd\", \"managed=true\", \"terraform-test\", \"scaleway_k8s_cluster\", \"default\", \"node=21553d0d-15c0-4b71-b557-7efd0d478398\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, \"public_ips\": [{\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, {\"id\": \"6e0fde74-7588-46f5-9ca0-c0791b471188\", \"address\": \"2001:bc8:710:404b:dc00:ff:fed0:7057\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:7058\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"2df7f8b1-6bd3-43dd-b660-b453c3836e98\"}], \"mac_address\": \"de:00:00:d0:70:57\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T16:24:58.918229+00:00\", \"modification_date\": \"2025-10-30T16:25:05.142326+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"4ef16f7a-478c-4b72-b932-982f4b04974b\", \"name\": \"Kapsule default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"12\", \"hypervisor_id\": \"101\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"private_network_id\": \"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"server_id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"mac_address\": \"02:00:00:1a:35:26\", \"state\": \"available\", \"creation_date\": \"2025-10-30T16:25:01.398380+00:00\", \"modification_date\": \"2025-10-30T16:25:01.565852+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"28c1d7a8-0419-4979-8eec-043331fe2c84\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "3815" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 66007838-59cb-42d3-8749-6c751fce696e - status: 200 OK - code: 200 - duration: 173.298711ms -- id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - pool_id: - - 329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&pool_id=329660c2-2ae9-4907-a4cc-c8ae7ce7ca37&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"a34ec0fd-a4f8-487d-813f-5d14369a67cf\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.865038Z\", \"updated_at\":\"2025-10-30T16:26:51.162742Z\", \"pool_id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/3e5635e7-8f2f-42aa-a116-98563cdca504\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1e35ac18-3a79-462b-93aa-b9d7791aef0b - status: 200 OK - code: 200 - duration: 33.9295ms -- id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e5635e7-8f2f-42aa-a116-98563cdca504 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 3820 - body: "{\"server\": {\"id\": \"3e5635e7-8f2f-42aa-a116-98563cdca504\", \"name\": \"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"arch\": \"x86_64\", \"commercial_type\": \"PRO2-XXS\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"image\": {\"id\": \"5b4b5f3f-c2a1-451e-8603-4c0179b4de03\", \"name\": \"k8s_base_node_instance\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"c6b09a14-4a4d-44cd-a772-4f235fef4826\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-27T10:01:33.994085+00:00\", \"modification_date\": \"2025-10-27T10:01:33.994085+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": true, \"volume_type\": \"sbs_volume\", \"id\": \"c8a640a9-01ac-4b74-8930-96ec93542099\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"pool=329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"pool-name=test-pool-minimal-2\", \"runtime=containerd\", \"managed=true\", \"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\", \"node=a34ec0fd-a4f8-487d-813f-5d14369a67cf\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minima-test-pool-minimal--a34ec0\"], \"state\": \"attached\", \"ipam_id\": \"21d59ed8-ebc0-4f71-8ca2-cf8643f94e4c\"}, \"public_ips\": [{\"id\": \"5e1fe2cf-537e-4763-9643-89980a20a0b0\", \"address\": \"163.172.149.221\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minima-test-pool-minimal--a34ec0\"], \"state\": \"attached\", \"ipam_id\": \"21d59ed8-ebc0-4f71-8ca2-cf8643f94e4c\"}, {\"id\": \"e5cc1ffc-127d-4888-871f-7b6927753964\", \"address\": \"2001:bc8:710:d34f:dc00:ff:fed0:706b\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:706c\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minima-test-pool-minimal--a34ec0\"], \"state\": \"attached\", \"ipam_id\": \"242e2406-8cc8-4b0a-9493-e0a44c09754b\"}], \"mac_address\": \"de:00:00:d0:70:6b\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T16:25:39.497701+00:00\", \"modification_date\": \"2025-10-30T16:25:44.467868+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"4ef16f7a-478c-4b72-b932-982f4b04974b\", \"name\": \"Kapsule default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"33\", \"hypervisor_id\": \"901\", \"node_id\": \"8\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"3c992745-903c-4151-a853-06d914135ecd\", \"private_network_id\": \"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"server_id\": \"3e5635e7-8f2f-42aa-a116-98563cdca504\", \"mac_address\": \"02:00:00:13:f4:69\", \"state\": \"available\", \"creation_date\": \"2025-10-30T16:25:41.644718+00:00\", \"modification_date\": \"2025-10-30T16:25:41.763638+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"1eba195d-6bd2-4600-8adb-69d607981d6f\", \"7102e233-ba57-4ba2-b095-2185253ca639\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "3820" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 34a8f5f9-fd18-407d-9522-84f8a061dabe - status: 200 OK - code: 200 - duration: 143.195642ms -- id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - fa01cc3d-5241-4def-917c-ab7a00e62c5c - status: 200 OK - code: 200 - duration: 26.123649ms -- id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a7f8dd64-972f-4453-a8e1-ec38dc21b529 - status: 200 OK - code: 200 - duration: 26.823473ms -- id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f948099-c02a-43ac-bc3d-c7962f484d67 - status: 200 OK - code: 200 - duration: 25.713549ms -- id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6bf5b03f-ade1-4a77-9d40-afa90c80539b - status: 200 OK - code: 200 - duration: 89.185765ms -- id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 31dd1139-76ec-4359-96d0-3f95bcbdadaa - status: 200 OK - code: 200 - duration: 77.717742ms -- id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:51.176616Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f5bc1492-86a5-42c3-ae8f-016ea5fb0d9d - status: 200 OK - code: 200 - duration: 107.689694ms -- id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 649 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:26:51.139802Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"NetworkUnavailable\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "649" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 77438acf-ec58-44b1-ac2d-1b1b461367e8 - status: 200 OK - code: 200 - duration: 30.742017ms -- id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=329660c2-2ae9-4907-a4cc-c8ae7ce7ca37&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"a34ec0fd-a4f8-487d-813f-5d14369a67cf\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.865038Z\", \"updated_at\":\"2025-10-30T16:26:51.162742Z\", \"pool_id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/3e5635e7-8f2f-42aa-a116-98563cdca504\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e775357f-4676-4b39-9a06-20923a825afa - status: 200 OK - code: 200 - duration: 22.954973ms -- id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - eec114d4-d2c2-4934-ac6a-cc02bd0e7b47 - status: 200 OK - code: 200 - duration: 21.909941ms -- id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - f6642085-7341-4f6b-b66a-34f2a612397e - status: 200 OK - code: 200 - duration: 29.013222ms -- id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9bdb51c3-9b74-4638-a766-e44d6eacf681 - status: 200 OK - code: 200 - duration: 29.943689ms -- id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minima-test-pool-minimal--a34ec0 - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--a34ec0&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"7102e233-ba57-4ba2-b095-2185253ca639\", \"address\":\"fd5f:519c:6d46:22e5:262f:9818:9285:6eef/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:41.959447Z\", \"updated_at\":\"2025-10-30T16:25:41.959447Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"1eba195d-6bd2-4600-8adb-69d607981d6f\", \"address\":\"172.18.88.4/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:41.841664Z\", \"updated_at\":\"2025-10-30T16:25:41.841664Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 25635619-2da8-4b01-a8b7-c12da9b71641 - status: 200 OK - code: 200 - duration: 37.969392ms -- id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 767 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:51.176616Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "767" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 22bb6b6e-d9af-470f-9d7c-7cd3b0587fd1 - status: 200 OK - code: 200 - duration: 21.688436ms -- id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - b1e68838-b53b-421b-bd5a-f7b214e9678a - status: 200 OK - code: 200 - duration: 35.94387ms -- id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=329660c2-2ae9-4907-a4cc-c8ae7ce7ca37&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 621 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"a34ec0fd-a4f8-487d-813f-5d14369a67cf\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.865038Z\", \"updated_at\":\"2025-10-30T16:26:51.162742Z\", \"pool_id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\", \"public_ip_v4\":\"163.172.149.221\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/3e5635e7-8f2f-42aa-a116-98563cdca504\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "621" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - e9c55f7a-7d23-4df3-b457-c4f7ead57b3b - status: 200 OK - code: 200 - duration: 27.421455ms -- id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4a82c425-fbde-426b-9c0c-707efd1c3c20 - status: 200 OK - code: 200 - duration: 22.732755ms -- id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7dc35b68-f0b1-4dfb-9e60-6d4744f6f429 - status: 200 OK - code: 200 - duration: 21.665432ms -- id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minima-test-pool-minimal--a34ec0 - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--a34ec0&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"7102e233-ba57-4ba2-b095-2185253ca639\", \"address\":\"fd5f:519c:6d46:22e5:262f:9818:9285:6eef/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:41.959447Z\", \"updated_at\":\"2025-10-30T16:25:41.959447Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"1eba195d-6bd2-4600-8adb-69d607981d6f\", \"address\":\"172.18.88.4/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:41.841664Z\", \"updated_at\":\"2025-10-30T16:25:41.841664Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"3c992745-903c-4151-a853-06d914135ecd\", \"mac_address\":\"02:00:00:13:F4:69\", \"name\":\"scw-test-pool-minima-test-pool-minimal--a34ec0\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7dae6cfd-8824-473f-aa56-e6e9f3e7ef45 - status: 200 OK - code: 200 - duration: 29.847819ms -- id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 06fe8080-d427-4c74-9557-b34c1d652404 - status: 200 OK - code: 200 - duration: 29.769132ms -- id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2161229e-d4f9-4531-94ae-71044c0cc0f2 - status: 200 OK - code: 200 - duration: 19.087303ms -- id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 4db68a9f-3bbf-464c-8116-1706793eda4d - status: 200 OK - code: 200 - duration: 38.259266ms -- id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 649 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:26:51.139802Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"NetworkUnavailable\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "649" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 00e811f9-5b9d-41ad-b863-64f14d9aae36 - status: 200 OK - code: 200 - duration: 25.678053ms -- id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - cd9a4848-d7cf-472f-a72e-a5c1520fa040 - status: 200 OK - code: 200 - duration: 21.964624ms -- id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - a4a91183-5171-4b16-a7d7-322306e490f6 - status: 200 OK - code: 200 - duration: 27.054086ms -- id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 770 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:56.603578Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "770" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d0140ea9-7519-4adc-acb0-813ee4b65ef9 - status: 200 OK - code: 200 - duration: 109.694807ms -- id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 770 - body: "{\"region\":\"fr-par\", \"id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:25:38.114247Z\", \"updated_at\":\"2025-10-30T16:26:56.603578Z\", \"name\":\"test-pool-minimal-2\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "770" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:26:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 8b64be46-0c2c-4d43-bf9e-9b3e50e655d9 - status: 200 OK - code: 200 - duration: 28.22299ms -- id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/329660c2-2ae9-4907-a4cc-c8ae7ce7ca37 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"329660c2-2ae9-4907-a4cc-c8ae7ce7ca37\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6e737997-93a3-4aba-a3fb-67129f0d2b56 - status: 404 Not Found - code: 404 - duration: 30.146119ms -- id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - adf3fc27-26ef-4f1d-9a77-10901c2cac16 - status: 200 OK - code: 200 - duration: 93.835612ms -- id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - c5767250-cafa-4022-af3f-792788d17f60 - status: 200 OK - code: 200 - duration: 21.727899ms -- id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 649 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:26:59.874869Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"NetworkUnavailable\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "649" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 01c8bb05-41fb-4a39-ac47-6235d9526e30 - status: 200 OK - code: 200 - duration: 26.287177ms -- id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb51e515-671f-4e80-875b-52c3de6157e9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 3815 - body: "{\"server\": {\"id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"name\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"arch\": \"x86_64\", \"commercial_type\": \"PRO2-XXS\", \"boot_type\": \"local\", \"organization\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"project\": \"105bdce1-64c0-48ab-899d-868455867ecf\", \"hostname\": \"scw-test-pool-minimal-test-pool-minimal-21553d\", \"image\": {\"id\": \"5b4b5f3f-c2a1-451e-8603-4c0179b4de03\", \"name\": \"k8s_base_node_instance\", \"organization\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"project\": \"51b656e3-4865-41e8-adbc-0c45bdd780db\", \"root_volume\": {\"volume_type\": \"sbs_snapshot\", \"id\": \"c6b09a14-4a4d-44cd-a772-4f235fef4826\", \"size\": 0, \"name\": \"\"}, \"extra_volumes\": {}, \"public\": true, \"arch\": \"x86_64\", \"creation_date\": \"2025-10-27T10:01:33.994085+00:00\", \"modification_date\": \"2025-10-27T10:01:33.994085+00:00\", \"default_bootscript\": null, \"from_server\": \"\", \"state\": \"available\", \"tags\": [], \"zone\": \"fr-par-1\"}, \"volumes\": {\"0\": {\"boot\": true, \"volume_type\": \"sbs_volume\", \"id\": \"bbd33d9f-6a04-4271-be87-174a742b855c\", \"state\": \"available\", \"zone\": \"fr-par-1\"}}, \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"pool=76a92752-3eea-4625-b05e-532277914a3a\", \"pool-name=test-pool-minimal\", \"runtime=containerd\", \"managed=true\", \"terraform-test\", \"scaleway_k8s_cluster\", \"default\", \"node=21553d0d-15c0-4b71-b557-7efd0d478398\"], \"state\": \"running\", \"protected\": false, \"state_detail\": \"booting kernel\", \"public_ip\": {\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, \"public_ips\": [{\"id\": \"65a60f6b-fa89-4e49-bc25-fced17fa3df3\", \"address\": \"51.15.236.240\", \"dynamic\": false, \"gateway\": \"62.210.0.1\", \"netmask\": \"32\", \"family\": \"inet\", \"provisioning_mode\": \"dhcp\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"d13243cf-f7a2-47a2-82cb-b82803e8ab66\"}, {\"id\": \"6e0fde74-7588-46f5-9ca0-c0791b471188\", \"address\": \"2001:bc8:710:404b:dc00:ff:fed0:7057\", \"dynamic\": false, \"gateway\": \"fe80::dc00:ff:fed0:7058\", \"netmask\": \"64\", \"family\": \"inet6\", \"provisioning_mode\": \"slaac\", \"tags\": [\"kapsule=bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"node-name=scw-test-pool-minimal-test-pool-minimal-21553d\"], \"state\": \"attached\", \"ipam_id\": \"2df7f8b1-6bd3-43dd-b660-b453c3836e98\"}], \"mac_address\": \"de:00:00:d0:70:57\", \"routed_ip_enabled\": true, \"ipv6\": null, \"extra_networks\": [], \"dynamic_ip_required\": false, \"enable_ipv6\": false, \"private_ip\": null, \"creation_date\": \"2025-10-30T16:24:58.918229+00:00\", \"modification_date\": \"2025-10-30T16:25:05.142326+00:00\", \"bootscript\": null, \"security_group\": {\"id\": \"4ef16f7a-478c-4b72-b932-982f4b04974b\", \"name\": \"Kapsule default security group\"}, \"location\": {\"zone_id\": \"fr-par-1\", \"platform_id\": \"14\", \"cluster_id\": \"12\", \"hypervisor_id\": \"101\", \"node_id\": \"31\"}, \"maintenances\": [], \"allowed_actions\": [\"poweroff\", \"terminate\", \"reboot\", \"stop_in_place\", \"backup\"], \"placement_group\": null, \"private_nics\": [{\"id\": \"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"private_network_id\": \"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"server_id\": \"fb51e515-671f-4e80-875b-52c3de6157e9\", \"mac_address\": \"02:00:00:1a:35:26\", \"state\": \"available\", \"creation_date\": \"2025-10-30T16:25:01.398380+00:00\", \"modification_date\": \"2025-10-30T16:25:01.565852+00:00\", \"zone\": \"fr-par-1\", \"tags\": [], \"ipam_ip_ids\": [\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"28c1d7a8-0419-4979-8eec-043331fe2c84\"]}], \"zone\": \"fr-par-1\", \"filesystems\": [], \"end_of_service\": false}}" - headers: - Content-Length: - - "3815" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1fea7176-0b35-4622-925b-6acfa945b388 - status: 200 OK - code: 200 - duration: 154.17602ms -- id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 422 - body: "{\"id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"name\":\"tf-vpc-friendly-williams\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.163149Z\", \"updated_at\":\"2025-10-30T16:18:47.163149Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_default\":false, \"private_network_count\":1, \"routing_enabled\":true, \"custom_routes_propagation_enabled\":true, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "422" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5398098f-9428-42ad-a6c8-79eb1b979568 - status: 200 OK - code: 200 - duration: 30.324614ms -- id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1087 - body: "{\"id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"name\":\"test-pool-minimal\", \"tags\":[], \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"subnets\":[{\"id\":\"0bede021-b29d-4922-8b51-970671def39d\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"172.18.88.0/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}, {\"id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\", \"created_at\":\"2025-10-30T16:18:47.286292Z\", \"updated_at\":\"2025-10-30T16:18:47.286292Z\", \"subnet\":\"fd5f:519c:6d46:22e5::/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\"}], \"vpc_id\":\"fb5cd7b8-e592-4b6e-8216-66fca3c089b6\", \"dhcp_enabled\":true, \"default_route_propagation_enabled\":false, \"region\":\"fr-par\"}" - headers: - Content-Length: - - "1087" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2cf0d67e-d3b4-47b2-91ba-d5f4cce8c20e - status: 200 OK - code: 200 - duration: 27.853035ms -- id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 9176b112-4383-4053-8bfe-50441f457a6c - status: 200 OK - code: 200 - duration: 95.439182ms -- id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/kubeconfig - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1674 - body: "{\"name\":\"kubeconfig\", \"content_type\":\"application/octet-stream\", \"content\":\"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhla05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3hUVlJCZVU5VVJUSk5WR2N3VDBadldFUlVUVEZOVkVGNVQxUkZNazFVWnpCUFJtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDVDFJME1HNDFObkZ1TDJWQ2EwMVpDbVUzVW5aalZIZDFZbmd3ZVhZcmMySXhkMWRITWtKemFGcHpTbGw1VHpndlJFWkpiVGMzVm5RMk9YcDNNakJzZEdaQ1UyZHBSRmRwZVhKNVJXVldiV3dLU1d0eGJGVXZRMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pVUWxZck9XbEhiMEZUT1VwdlZtWXZkUzlxUnpnMVZWSkVOV2hxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVKUVVSQ1JrRnBRVEl4TW5Sb0NqWjRNMVk1YlZjMFZYTlBRM1owWWtnMk1XOUVXalpFVG1rMFVHeHdUVU5PU0ZaMWVsUjNTV2hCVDB4QlNXUkhaM1JTVFRSd0sxazNTREJYZUVVMFZrb0tlVTlQZEhaU2J6TjFkRU5TTjJWclJqZFlabmtLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vYmQ1MWEwYWQtODBhMS00ZDQ2LThhY2ItOWFkYWE0MTA4NDEwLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogMVNaaGFUSGppY1Jid25EaVIzWHhwUDRJWENGMWJyWmlFMmZJMTBZQTBIR3JNV1dpdzE5SnROV2M=\"}" - headers: - Content-Length: - - "1674" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 7504afbd-bd15-4d95-b99a-6d3d905ce29a - status: 200 OK - code: 200 - duration: 90.767705ms -- id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 765 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:25:33.360930Z\", \"name\":\"test-pool-minimal\", \"status\":\"ready\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "765" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2f2cbf65-53f7-4d0a-8098-127c6a5a0d08 - status: 200 OK - code: 200 - duration: 85.902413ms -- id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_asc - page: - - "1" - pool_id: - - 76a92752-3eea-4625-b05e-532277914a3a - status: - - unknown - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410/nodes?order_by=created_at_asc&page=1&pool_id=76a92752-3eea-4625-b05e-532277914a3a&status=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 649 - body: "{\"total_count\":1, \"nodes\":[{\"region\":\"fr-par\", \"id\":\"21553d0d-15c0-4b71-b557-7efd0d478398\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:24:58.266436Z\", \"updated_at\":\"2025-10-30T16:26:59.874869Z\", \"pool_id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"status\":\"ready\", \"conditions\":{\"DiskPressure\":\"False\", \"MemoryPressure\":\"False\", \"NetworkUnavailable\":\"False\", \"PIDPressure\":\"False\", \"Ready\":\"True\"}, \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\", \"public_ip_v4\":\"51.15.236.240\", \"public_ip_v6\":null, \"provider_id\":\"scaleway://instance/fr-par-1/fb51e515-671f-4e80-875b-52c3de6157e9\", \"error_message\":\"\"}]}" - headers: - Content-Length: - - "649" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 2c8da833-f271-4134-8e4d-84be669955f3 - status: 200 OK - code: 200 - duration: 70.208869ms -- id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1633 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:20:59.041275Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"ready\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1633" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 50dc5267-e3e5-40ff-86a3-55a141b647a8 - status: 200 OK - code: 200 - duration: 20.504343ms -- id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - order_by: - - created_at_desc - project_id: - - 105bdce1-64c0-48ab-899d-868455867ecf - resource_name: - - scw-test-pool-minimal-test-pool-minimal-21553d - resource_type: - - unknown_type - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-21553d&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1122 - body: "{\"total_count\":2, \"ips\":[{\"id\":\"28c1d7a8-0419-4979-8eec-043331fe2c84\", \"address\":\"fd5f:519c:6d46:22e5:34fe:8c68:418c:3ac7/64\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":true, \"created_at\":\"2025-10-30T16:25:01.810746Z\", \"updated_at\":\"2025-10-30T16:25:01.810746Z\", \"source\":{\"subnet_id\":\"d7af6fd0-cb67-4b07-9c7f-5555b52eee58\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}, {\"id\":\"454ad022-4c4c-4a26-b209-e5a4b0c0f6b7\", \"address\":\"172.18.88.3/22\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"is_ipv6\":false, \"created_at\":\"2025-10-30T16:25:01.646647Z\", \"updated_at\":\"2025-10-30T16:25:01.646647Z\", \"source\":{\"subnet_id\":\"0bede021-b29d-4922-8b51-970671def39d\"}, \"resource\":{\"type\":\"instance_private_nic\", \"id\":\"a36f58d2-bfe1-4eca-86d9-f9c78f19628f\", \"mac_address\":\"02:00:00:1A:35:26\", \"name\":\"scw-test-pool-minimal-test-pool-minimal-21553d\"}, \"tags\":[], \"reverses\":[], \"region\":\"fr-par\", \"zone\":null}]}" - headers: - Content-Length: - - "1122" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 159b95c8-b89f-4d02-88fb-48dc9db93eb8 - status: 200 OK - code: 200 - duration: 50.43646ms -- id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 768 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:28:10.553310Z\", \"name\":\"test-pool-minimal\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "768" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1d4012bf-adf4-4d7d-a6bb-f1131251d0c3 - status: 200 OK - code: 200 - duration: 44.666711ms -- id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 768 - body: "{\"region\":\"fr-par\", \"id\":\"76a92752-3eea-4625-b05e-532277914a3a\", \"cluster_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"created_at\":\"2025-10-30T16:18:53.744787Z\", \"updated_at\":\"2025-10-30T16:28:10.553310Z\", \"name\":\"test-pool-minimal\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"node_type\":\"pro2_xxs\", \"autoscaling\":true, \"size\":1, \"min_size\":1, \"max_size\":1, \"container_runtime\":\"containerd\", \"autohealing\":true, \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"default\"], \"placement_group_id\":null, \"kubelet_args\":{}, \"upgrade_policy\":{\"max_unavailable\":1, \"max_surge\":0}, \"zone\":\"fr-par-1\", \"root_volume_type\":\"sbs_5k\", \"root_volume_size\":20000000000, \"public_ip_disabled\":false, \"new_images_enabled\":true, \"security_group_id\":\"4ef16f7a-478c-4b72-b932-982f4b04974b\"}" - headers: - Content-Length: - - "768" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:28:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 6ed51c12-bbed-45b2-aefe-bb970ab352b5 - status: 200 OK - code: 200 - duration: 96.724755ms -- id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"76a92752-3eea-4625-b05e-532277914a3a\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 5c02789f-8ea5-413b-bebe-b174cf6e55e1 - status: 404 Not Found - code: 404 - duration: 26.408745ms -- id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - form: - with_additional_resources: - - "false" - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410?with_additional_resources=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1637 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:30:23.088229Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":false, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1637" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 0dc96049-8470-43af-8ebc-9f00bd316f55 - status: 200 OK - code: 200 - duration: 154.688824ms -- id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 1636 - body: "{\"region\":\"fr-par\", \"id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\", \"organization_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"project_id\":\"105bdce1-64c0-48ab-899d-868455867ecf\", \"created_at\":\"2025-10-30T16:18:48.262115Z\", \"updated_at\":\"2025-10-30T16:30:23.088229Z\", \"type\":\"kapsule\", \"name\":\"test-pool-minimal\", \"description\":\"\", \"status\":\"deleting\", \"version\":\"1.34.1\", \"cni\":\"calico\", \"tags\":[\"terraform-test\", \"scaleway_k8s_cluster\", \"minimal\"], \"cluster_url\":\"https://bd51a0ad-80a1-4d46-8acb-9adaa4108410.api.k8s.fr-par.scw.cloud:6443\", \"dns_wildcard\":\"*.bd51a0ad-80a1-4d46-8acb-9adaa4108410.nodes.k8s.fr-par.scw.cloud\", \"autoscaler_config\":{\"scale_down_disabled\":false, \"scale_down_delay_after_add\":\"10m\", \"estimator\":\"binpacking\", \"expander\":\"random\", \"ignore_daemonsets_utilization\":false, \"balance_similar_node_groups\":false, \"expendable_pods_priority_cutoff\":0, \"scale_down_unneeded_time\":\"10m\", \"scale_down_utilization_threshold\":0.5, \"max_graceful_termination_sec\":0}, \"auto_upgrade\":{\"enabled\":false, \"maintenance_window\":{\"start_hour\":0, \"day\":\"any\"}}, \"upgrade_available\":false, \"feature_gates\":[], \"admission_plugins\":[], \"open_id_connect_config\":{\"issuer_url\":\"\", \"client_id\":\"\", \"username_claim\":\"\", \"username_prefix\":\"\", \"groups_claim\":[], \"groups_prefix\":\"\", \"required_claim\":[]}, \"apiserver_cert_sans\":[], \"private_network_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\", \"commitment_ends_at\":\"2025-10-30T16:18:48.262121Z\", \"acl_available\":true, \"iam_nodes_group_id\":\"1797d43b-5d04-471b-80f7-5036f26b7d01\", \"new_images_enabled\":true, \"pod_cidr\":\"100.64.0.0/15\", \"service_cidr\":\"10.32.0.0/20\", \"service_dns_ip\":\"10.32.0.10\"}" - headers: - Content-Length: - - "1636" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 772756e7-bf29-4c4a-9359-386a0cc5b4bd - status: 200 OK - code: 200 - duration: 103.989239ms -- id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - ac309ca5-79ff-46ef-b785-433e59034bc0 - status: 404 Not Found - code: 404 - duration: 22.349867ms -- id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 1124d2e1-216a-4d5d-8956-aeb0d8f27e74 - status: 204 No Content - code: 204 - duration: 1.21587502s -- id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fb5cd7b8-e592-4b6e-8216-66fca3c089b6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 0 - body: "" - headers: - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 041cec3a-a6e6-4f00-8f80-bdb94fd516ce - status: 204 No Content - code: 204 - duration: 181.712121ms -- id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/76a92752-3eea-4625-b05e-532277914a3a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 125 - body: "{\"message\":\"resource is not found\",\"resource\":\"pool\",\"resource_id\":\"76a92752-3eea-4625-b05e-532277914a3a\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "125" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - d2baac51-9cbe-419b-b553-906033473a19 - status: 404 Not Found - code: 404 - duration: 27.683717ms -- id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/bd51a0ad-80a1-4d46-8acb-9adaa4108410 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 128 - body: "{\"message\":\"resource is not found\",\"resource\":\"cluster\",\"resource_id\":\"bd51a0ad-80a1-4d46-8acb-9adaa4108410\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "128" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 59a0c752-5fed-4420-8d54-74d793de8367 - status: 404 Not Found - code: 404 - duration: 21.920541ms -- id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - host: api.scaleway.com - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dd4ca113-1e98-4ef4-851b-44e9acdda76c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 136 - body: "{\"message\":\"resource is not found\",\"resource\":\"private_network\",\"resource_id\":\"dd4ca113-1e98-4ef4-851b-44e9acdda76c\",\"type\":\"not_found\"}" - headers: - Content-Length: - - "136" - Content-Type: - - application/json - Date: - - Thu, 30 Oct 2025 16:30:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - X-Request-Id: - - 17ba2016-e63e-46c1-b200-d15c83236c47 - status: 404 Not Found - code: 404 - duration: 19.794521ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/versions + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 5400 + body: '{"versions":[{"region":"fr-par","name":"1.35.0","label":"Kubernetes 1.35.0","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2027-01-19T00:00:00Z","end_of_life_at":"2027-03-19T00:00:00Z","released_at":"2026-01-19T00:00:00Z"},{"region":"fr-par","name":"1.34.3","label":"Kubernetes 1.34.3","available_cnis":["cilium","cilium_native","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","CPUManagerPolicyAlphaOptions","ImageVolume","MutatingAdmissionPolicy"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-29T00:00:00Z","end_of_life_at":"2026-11-29T00:00:00Z","released_at":"2025-09-29T00:00:00Z"},{"region":"fr-par","name":"1.33.7","label":"Kubernetes 1.33.7","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","DRAAdminAccess","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-09-04T00:00:00Z","end_of_life_at":"2026-11-04T00:00:00Z","released_at":"2025-09-04T00:00:00Z"},{"region":"fr-par","name":"1.32.11","label":"Kubernetes 1.32.11","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation","PodLevelResources","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2026-03-24T00:00:00Z","end_of_life_at":"2026-06-24T00:00:00Z","released_at":"2025-03-24T00:00:00Z"},{"region":"fr-par","name":"1.31.14","label":"Kubernetes 1.31.14","available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","CPUManagerPolicyAlphaOptions","ImageVolume"],"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","cpuManagerPolicyOptions":"map[string]string","enableDebuggingHandlers":"bool","evictionHard":"map[string]string","evictionMinimumReclaim":"map[string]string","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"deprecated_at":"2025-12-02T00:00:00Z","end_of_life_at":"2026-02-17T00:00:00Z","released_at":"2024-12-02T00:00:00Z"}]}' + headers: + Content-Length: + - "5400" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c0925bcf-77e3-4263-96ac-c3eba189a7e2 + status: 200 OK + code: 200 + duration: 1.18464175s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 116 + host: api.scaleway.com + body: '{"name":"tf-vpc-tender-wilbur","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1f9a62d2-40da-4929-a703-48ec4600b5d7 + status: 200 OK + code: 200 + duration: 405.246208ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":0,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b9b242d9-d5e6-4abf-89ad-bd226d0db04c + status: 200 OK + code: 200 + duration: 182.186042ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 195 + host: api.scaleway.com + body: '{"name":"test-pool-minimal","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","default_route_propagation_enabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 60eb5b67-f1ab-4e5b-a8f4-915dc4232194 + status: 200 OK + code: 200 + duration: 745.295167ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 460c9fa0-9fdc-4cd7-9d9f-101ba84ef339 + status: 200 OK + code: 200 + duration: 277.06675ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 698 + host: api.scaleway.com + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"","name":"test-pool-minimal","description":"","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"version":"1.35.0","cni":"calico","pools":null,"autoscaler_config":{"scale_down_disabled":null,"scale_down_delay_after_add":null,"estimator":"unknown_estimator","expander":"unknown_expander","ignore_daemonsets_utilization":null,"balance_similar_node_groups":null,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":null,"scale_down_utilization_threshold":null,"max_graceful_termination_sec":0},"feature_gates":[],"admission_plugins":[],"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911"}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1526 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:36:05.457784Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1526" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4714ecec-306c-4ca1-a3ce-bb5f765d2e62 + status: 200 OK + code: 200 + duration: 1.307513333s + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:36:05.854833Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"creating","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3bd655a5-24dd-4789-8441-fa5dfb80176b + status: 200 OK + code: 200 + duration: 312.531667ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1567 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:36:06.506543Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1567" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ad59288b-e6da-4e03-acd2-74d981f65bed + status: 200 OK + code: 200 + duration: 181.467917ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 28 + body: '{"total_count":0,"pools":[]}' + headers: + Content-Length: + - "28" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5a0d8517-57b2-4d73-9cad-affd6f2ebcc6 + status: 200 OK + code: 200 + duration: 99.352ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1567 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:36:06.506543Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1567" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f357061f-467e-402e-b903-2aef8372476f + status: 200 OK + code: 200 + duration: 29.628125ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 83bdf972-922e-4094-8f39-9e5270f62389 + status: 200 OK + code: 200 + duration: 86.308125ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1567 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:36:06.506543Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"pool_required","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1567" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9bab4bd9-620e-47c2-808c-20a8a48ef30d + status: 200 OK + code: 200 + duration: 24.96125ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 320 + host: api.scaleway.com + body: '{"name":"test-pool-minimal","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/pools + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0174135f-050f-4259-9307-488b9603b0d1 + status: 200 OK + code: 200 + duration: 210.596208ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - dec3bbf2-6391-4bea-b5cc-f763ed8e2b13 + status: 200 OK + code: 200 + duration: 25.291042ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:17 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9b265363-f348-41c1-b600-8cadad0ae6fe + status: 200 OK + code: 200 + duration: 96.39025ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - df4b84b8-1691-4c7b-9d4a-ef76c919ba7e + status: 200 OK + code: 200 + duration: 133.1125ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d8567ef1-a2fa-4ceb-9d73-8b0049c838af + status: 200 OK + code: 200 + duration: 98.037041ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5c9a5217-7add-492b-8015-907b9cdf7390 + status: 200 OK + code: 200 + duration: 97.653375ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b044f4f3-0b5a-46d8-9240-31c716f01d3d + status: 200 OK + code: 200 + duration: 99.622792ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4189af37-7dcd-41de-806a-4fc86530629f + status: 200 OK + code: 200 + duration: 36.719084ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1e8e08f3-0f9e-43db-8093-854d4d8114b1 + status: 200 OK + code: 200 + duration: 33.02575ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 122ead6a-97e0-449d-bee8-43314c93098b + status: 200 OK + code: 200 + duration: 87.346708ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:36:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0209679d-0766-4076-9b5d-9ff393c6515e + status: 200 OK + code: 200 + duration: 45.45325ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cfe3cd3a-2278-4089-a80a-c72460c1e9e7 + status: 200 OK + code: 200 + duration: 35.37475ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:08 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 34ef3871-aa3c-4d6f-b149-93566f907ab2 + status: 200 OK + code: 200 + duration: 39.801125ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c8c3b3aa-5d95-44e5-9c9f-ea64b75a79f2 + status: 200 OK + code: 200 + duration: 93.755708ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9776a50b-b253-4461-b5fc-d2ab96954ce3 + status: 200 OK + code: 200 + duration: 93.4645ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 28963635-b4a0-4c1a-a735-5105caf2ed38 + status: 200 OK + code: 200 + duration: 99.625542ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1e84c3b5-64c6-4f61-80d7-d2599741fc91 + status: 200 OK + code: 200 + duration: 39.760458ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c46a183e-413e-4a87-bb03-dd03c84da354 + status: 200 OK + code: 200 + duration: 93.133917ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9eff08f2-6a52-4414-b0f4-98c91e91158a + status: 200 OK + code: 200 + duration: 106.779208ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9d05d32e-5434-48d0-947c-988c44118030 + status: 200 OK + code: 200 + duration: 96.815041ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7c0173c1-3e7b-4efb-a7fe-c21e3ae477f1 + status: 200 OK + code: 200 + duration: 97.393833ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cc71124a-90b6-4ad9-b3ec-bfd0adfa44f5 + status: 200 OK + code: 200 + duration: 115.221417ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:37:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2d623035-6ef4-4cc6-a266-cb003d5b5279 + status: 200 OK + code: 200 + duration: 107.058125ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ca575bd6-c316-434f-9314-bd7029e9edca + status: 200 OK + code: 200 + duration: 105.672291ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:09 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0807dfc5-e955-499a-bf19-95b146d5226d + status: 200 OK + code: 200 + duration: 41.932375ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c96ef0e2-9fc9-488a-b423-0331292798fb + status: 200 OK + code: 200 + duration: 90.880584ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:36:12.033440Z","name":"test-pool-minimal","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 97fadcad-32bb-4549-8cf8-a5b4b47e385f + status: 200 OK + code: 200 + duration: 44.522959ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 743df398-ab43-4057-bb41-f54c072aca45 + status: 200 OK + code: 200 + duration: 106.806333ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f56eb9cd-d387-4adc-9e19-836bb5eae7e7 + status: 200 OK + code: 200 + duration: 27.329625ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2d847a22-c736-41ff-8eaf-82cafb29da6d + status: 200 OK + code: 200 + duration: 33.592083ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 602 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:38:22.213757Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "602" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ee93c0f9-80ec-4e04-9d15-0eadcb67cd1f + status: 200 OK + code: 200 + duration: 32.453083ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 65ad5327-3319-4843-853e-2dd8f1e72cee + status: 200 OK + code: 200 + duration: 105.184791ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0fcbeb44-2c4e-4aea-a110-6114da8f5af1 + status: 200 OK + code: 200 + duration: 27.67825ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 32fb38cc-a79a-4ebd-9563-c05aa618469e + status: 200 OK + code: 200 + duration: 23.035125ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a9ded05b-e13c-4444-9932-d10bc7f4d07a + status: 200 OK + code: 200 + duration: 22.799167ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 602 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:38:22.213757Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "602" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 08a77ebf-200c-4869-b395-7d0854a2c8da + status: 200 OK + code: 200 + duration: 21.852833ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/351411b7-4677-45c0-8cae-ef244936eaaa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3884 + body: '{"server": {"id": "351411b7-4677-45c0-8cae-ef244936eaaa", "name": "scw-test-pool-minimal-test-pool-minimal-018701", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "scw-test-pool-minimal-test-pool-minimal-018701", "image": {"id": "26ed5fcc-53e8-415b-807d-f4a284d55d87", "name": "k8s_base_node_instance", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "eb7e3383-7b15-4189-b284-a2bba45cb2b5", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2026-01-07T13:09:03.361333+00:00", "modification_date": "2026-01-07T13:09:03.361333+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3565a99e-9aab-4a1c-858a-c6a35efb1fb7", "state": "available", "zone": "fr-par-1"}}, "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "pool=d230793a-c334-4f86-89e5-5f5237b160e2", "pool-name=test-pool-minimal", "runtime=containerd", "managed=true", "terraform-test", "scaleway_k8s_cluster", "default", "node=01870108-1112-499a-b9c0-d06b45a0e4af"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, "public_ips": [{"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, {"id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a", "address": "2001:bc8:710:a9cf:dc00:ff:feea:c87d", "dynamic": false, "gateway": "fe80::dc00:ff:feea:c87e", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a"}], "mac_address": "de:00:00:ea:c8:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-29T16:37:38.156699+00:00", "modification_date": "2026-01-29T16:37:43.393943+00:00", "bootscript": null, "security_group": {"id": "040288eb-a7e7-42b4-9756-80e196b43a2c", "name": "Kapsule default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "68774b01-47a1-41a5-b7a9-5380c7227e37", "private_network_id": "0ab4d4d6-5d6e-47ef-8394-acdadd31e911", "server_id": "351411b7-4677-45c0-8cae-ef244936eaaa", "mac_address": "02:00:00:14:ae:dd", "state": "available", "creation_date": "2026-01-29T16:37:40.076641+00:00", "modification_date": "2026-01-29T16:37:40.176659+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["859096ac-aa72-4f27-b896-3eebbb09304c", "cb2063de-c269-4ea2-824d-48123ef8e6f9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "351411b7-4677-45c0-8cae-ef244936eaaa.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3884" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:24 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fe727790-5390-4963-a00b-7da9d6bb4ee2 + status: 200 OK + code: 200 + duration: 140.376542ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b917d03b-321c-41b7-a81f-23c1905e72a9 + status: 200 OK + code: 200 + duration: 27.56625ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - be88e522-352a-4af0-8bd9-067b9aa7a667 + status: 200 OK + code: 200 + duration: 23.6745ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cc44762c-a231-48fa-a44d-aac5d3f688f1 + status: 200 OK + code: 200 + duration: 23.294458ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 73a5b3e7-f61c-428d-ba83-81967f305e62 + status: 200 OK + code: 200 + duration: 93.675166ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b1ae945c-6dbc-43d4-ac65-cc8a1fe78deb + status: 200 OK + code: 200 + duration: 130.289375ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 602 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:38:22.213757Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "602" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 144a48d8-bff8-41d5-a622-b081c33656b9 + status: 200 OK + code: 200 + duration: 27.401958ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 76675a1a-9b1b-4ffd-a49e-14fd62062b76 + status: 200 OK + code: 200 + duration: 82.133333ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a15037be-81eb-4bf6-a2ba-11df5808d2b1 + status: 200 OK + code: 200 + duration: 27.542417ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f733584a-df76-4ea9-906d-bf58aeae77b8 + status: 200 OK + code: 200 + duration: 34.789708ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b87afea9-2bb8-4be0-a9f6-b0c04e97c650 + status: 200 OK + code: 200 + duration: 35.263959ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5bd5ef53-d753-4683-aee1-5157719db283 + status: 200 OK + code: 200 + duration: 22.6265ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 64095214-0401-4546-a49d-5b16eac24f70 + status: 200 OK + code: 200 + duration: 81.248916ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 97fe8eaa-2db2-43ff-9902-cfdb7a58ba7b + status: 200 OK + code: 200 + duration: 25.157833ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 602 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:38:22.213757Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "602" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 947a5d29-2f39-4ef5-a6b5-f8972cf1c268 + status: 200 OK + code: 200 + duration: 32.870791ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b7ac8eff-5934-4bcf-a1eb-24558ee2c561 + status: 200 OK + code: 200 + duration: 37.849042ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7526c82f-a8a8-445d-82fa-1acfb6f2523f + status: 200 OK + code: 200 + duration: 29.231459ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f4aea6bd-fe3e-4d44-8063-5cdcb2e3eeba + status: 200 OK + code: 200 + duration: 27.48875ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 322 + host: api.scaleway.com + body: '{"name":"test-pool-minimal-2","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"kubelet_args":{},"zone":"fr-par-1","root_volume_type":"default_volume_type","public_ip_disabled":false}' + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/pools + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e6b27d52-4a4f-4a85-b5d3-e82d87d64c43 + status: 200 OK + code: 200 + duration: 283.651292ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e0a78d15-e99a-4866-91e0-f69db84fbd4e + status: 200 OK + code: 200 + duration: 85.868625ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c6c0cd3d-ddcb-43a3-9d06-76758d17c47e + status: 200 OK + code: 200 + duration: 112.150291ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a1dcf112-4ed8-4126-a868-64b9518970fe + status: 200 OK + code: 200 + duration: 92.797333ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 87c8adb0-1eb6-4188-97e6-ee646acb77d0 + status: 200 OK + code: 200 + duration: 109.073333ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c4d13b74-a590-4d05-bebf-49d3e7275169 + status: 200 OK + code: 200 + duration: 38.4615ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - bd0b80f0-613f-40c8-b825-1bc5b58bf208 + status: 200 OK + code: 200 + duration: 37.632958ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:38:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 2e40be21-50ac-4bc7-b5e3-0b548c7139f0 + status: 200 OK + code: 200 + duration: 34.975666ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fe0659e2-da56-4799-a5f2-f8fe8faf1787 + status: 200 OK + code: 200 + duration: 39.452ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 760 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:38:26.654684Z","name":"test-pool-minimal-2","status":"scaling","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "760" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d025ad8f-5add-4ab1-9a5a-8f2d5d0af668 + status: 200 OK + code: 200 + duration: 99.4275ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:10.880573Z","name":"test-pool-minimal-2","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e742da91-1e18-463e-a596-ed1a0552fa96 + status: 200 OK + code: 200 + duration: 101.7905ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1b096e3e-6d7c-4f3b-8f49-7cbe9e09d5b2 + status: 200 OK + code: 200 + duration: 89.131416ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:10.880573Z","name":"test-pool-minimal-2","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cffe67fe-4dc6-42a5-8b0b-dda8ae03a375 + status: 200 OK + code: 200 + duration: 35.523667ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - 79f32ab2-8e91-43f1-acf5-f3547efea8a2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=79f32ab2-8e91-43f1-acf5-f3547efea8a2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"753fa7c1-5748-46cf-89de-0ec31e0b5ccf","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.941314Z","updated_at":"2026-01-29T16:39:10.870758Z","pool_id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minima-test-pool-minimal--753fa7","public_ip_v4":"51.158.64.118","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/1cd57439-c514-4f46-abf5-bd5f8b5ec597","error_message":""}]}' + headers: + Content-Length: + - "603" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 03dc3b0b-7a59-4d28-8467-17e5f4a733aa + status: 200 OK + code: 200 + duration: 34.132417ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e219de17-32d0-4534-8de2-d3198aa74c59 + status: 200 OK + code: 200 + duration: 31.747333ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minima-test-pool-minimal--753fa7 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--753fa7&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"7a83308e-21b2-4f0d-9d4f-9102e67e77aa","address":"fd5f:519c:6d46:ec4c:bb11:58b4:41a7:56ec/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:38:30.229905Z","updated_at":"2026-01-29T16:38:30.229905Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"11d8939f-b2a0-4e0f-9e50-30f46da2b820","address":"172.17.88.4/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:38:30.083238Z","updated_at":"2026-01-29T16:38:30.083238Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - f52b731b-fa80-42c5-82be-974c045f1e8e + status: 200 OK + code: 200 + duration: 39.183417ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 151a48ab-5c05-48ea-b05e-4b89c52f5514 + status: 200 OK + code: 200 + duration: 103.000375ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:10.880573Z","name":"test-pool-minimal-2","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cca408ee-a197-4a9e-a8ab-3911a5fe3750 + status: 200 OK + code: 200 + duration: 28.880542ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:10.856054Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1da5ca6e-074f-47de-87b6-eb02dfbe6c77 + status: 200 OK + code: 200 + duration: 27.415083ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/351411b7-4677-45c0-8cae-ef244936eaaa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3884 + body: '{"server": {"id": "351411b7-4677-45c0-8cae-ef244936eaaa", "name": "scw-test-pool-minimal-test-pool-minimal-018701", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "scw-test-pool-minimal-test-pool-minimal-018701", "image": {"id": "26ed5fcc-53e8-415b-807d-f4a284d55d87", "name": "k8s_base_node_instance", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "eb7e3383-7b15-4189-b284-a2bba45cb2b5", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2026-01-07T13:09:03.361333+00:00", "modification_date": "2026-01-07T13:09:03.361333+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3565a99e-9aab-4a1c-858a-c6a35efb1fb7", "state": "available", "zone": "fr-par-1"}}, "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "pool=d230793a-c334-4f86-89e5-5f5237b160e2", "pool-name=test-pool-minimal", "runtime=containerd", "managed=true", "terraform-test", "scaleway_k8s_cluster", "default", "node=01870108-1112-499a-b9c0-d06b45a0e4af"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, "public_ips": [{"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, {"id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a", "address": "2001:bc8:710:a9cf:dc00:ff:feea:c87d", "dynamic": false, "gateway": "fe80::dc00:ff:feea:c87e", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a"}], "mac_address": "de:00:00:ea:c8:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-29T16:37:38.156699+00:00", "modification_date": "2026-01-29T16:37:43.393943+00:00", "bootscript": null, "security_group": {"id": "040288eb-a7e7-42b4-9756-80e196b43a2c", "name": "Kapsule default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "68774b01-47a1-41a5-b7a9-5380c7227e37", "private_network_id": "0ab4d4d6-5d6e-47ef-8394-acdadd31e911", "server_id": "351411b7-4677-45c0-8cae-ef244936eaaa", "mac_address": "02:00:00:14:ae:dd", "state": "available", "creation_date": "2026-01-29T16:37:40.076641+00:00", "modification_date": "2026-01-29T16:37:40.176659+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["859096ac-aa72-4f27-b896-3eebbb09304c", "cb2063de-c269-4ea2-824d-48123ef8e6f9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "351411b7-4677-45c0-8cae-ef244936eaaa.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3884" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ed27d914-09d9-41b9-956c-af5df18aca7e + status: 200 OK + code: 200 + duration: 141.522416ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + pool_id: + - 79f32ab2-8e91-43f1-acf5-f3547efea8a2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&pool_id=79f32ab2-8e91-43f1-acf5-f3547efea8a2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"753fa7c1-5748-46cf-89de-0ec31e0b5ccf","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.941314Z","updated_at":"2026-01-29T16:39:10.870758Z","pool_id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minima-test-pool-minimal--753fa7","public_ip_v4":"51.158.64.118","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/1cd57439-c514-4f46-abf5-bd5f8b5ec597","error_message":""}]}' + headers: + Content-Length: + - "603" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0417eb4d-b92b-43df-9f8f-28cdc344d653 + status: 200 OK + code: 200 + duration: 26.794417ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1cd57439-c514-4f46-abf5-bd5f8b5ec597 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3888 + body: '{"server": {"id": "1cd57439-c514-4f46-abf5-bd5f8b5ec597", "name": "scw-test-pool-minima-test-pool-minimal--753fa7", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "scw-test-pool-minima-test-pool-minimal--753fa7", "image": {"id": "26ed5fcc-53e8-415b-807d-f4a284d55d87", "name": "k8s_base_node_instance", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "eb7e3383-7b15-4189-b284-a2bba45cb2b5", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2026-01-07T13:09:03.361333+00:00", "modification_date": "2026-01-07T13:09:03.361333+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "24de6796-879c-4046-a754-1709fa1c2550", "state": "available", "zone": "fr-par-1"}}, "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "pool=79f32ab2-8e91-43f1-acf5-f3547efea8a2", "pool-name=test-pool-minimal-2", "runtime=containerd", "managed=true", "terraform-test", "scaleway_k8s_cluster", "minimal", "node=753fa7c1-5748-46cf-89de-0ec31e0b5ccf"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "4be6481b-01e9-434f-a181-b90e386db1ee", "address": "51.158.64.118", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minima-test-pool-minimal--753fa7"], "state": "attached", "ipam_id": "4be6481b-01e9-434f-a181-b90e386db1ee"}, "public_ips": [{"id": "4be6481b-01e9-434f-a181-b90e386db1ee", "address": "51.158.64.118", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minima-test-pool-minimal--753fa7"], "state": "attached", "ipam_id": "4be6481b-01e9-434f-a181-b90e386db1ee"}, {"id": "656dd302-38a3-426c-8224-2f66cccc7061", "address": "2001:bc8:710:d34f:dc00:ff:feea:c889", "dynamic": false, "gateway": "fe80::dc00:ff:feea:c88a", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minima-test-pool-minimal--753fa7"], "state": "attached", "ipam_id": "656dd302-38a3-426c-8224-2f66cccc7061"}], "mac_address": "de:00:00:ea:c8:89", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-29T16:38:27.977766+00:00", "modification_date": "2026-01-29T16:38:32.634551+00:00", "bootscript": null, "security_group": {"id": "040288eb-a7e7-42b4-9756-80e196b43a2c", "name": "Kapsule default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "12", "hypervisor_id": "401", "node_id": "25"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "46ed6dfc-4835-4a59-a577-1c787c2fdc9c", "private_network_id": "0ab4d4d6-5d6e-47ef-8394-acdadd31e911", "server_id": "1cd57439-c514-4f46-abf5-bd5f8b5ec597", "mac_address": "02:00:00:16:a0:f9", "state": "available", "creation_date": "2026-01-29T16:38:29.904763+00:00", "modification_date": "2026-01-29T16:38:30.010007+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["11d8939f-b2a0-4e0f-9e50-30f46da2b820", "7a83308e-21b2-4f0d-9d4f-9102e67e77aa"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "1cd57439-c514-4f46-abf5-bd5f8b5ec597.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3888" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - a38350a4-fadd-4c46-98a4-e4780f19e321 + status: 200 OK + code: 200 + duration: 140.44725ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 40eb06b2-8ede-4e56-9ddb-67c68209bf0e + status: 200 OK + code: 200 + duration: 32.303ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 63c11ac0-fe77-4eff-a8b7-ce762df707fc + status: 200 OK + code: 200 + duration: 25.420334ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7a4ba213-ffa4-4de9-9dbe-ffe5650d1c36 + status: 200 OK + code: 200 + duration: 51.779792ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7799b46d-2ee0-491a-82c7-8d35e8ec73d8 + status: 200 OK + code: 200 + duration: 159.902792ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:10.880573Z","name":"test-pool-minimal-2","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 070c31dd-1e44-40a9-ba79-6213305f97c8 + status: 200 OK + code: 200 + duration: 94.497042ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4b4123bb-73ef-4401-b533-1a50f41cdd49 + status: 200 OK + code: 200 + duration: 98.246792ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - 79f32ab2-8e91-43f1-acf5-f3547efea8a2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=79f32ab2-8e91-43f1-acf5-f3547efea8a2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"753fa7c1-5748-46cf-89de-0ec31e0b5ccf","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.941314Z","updated_at":"2026-01-29T16:39:10.870758Z","pool_id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minima-test-pool-minimal--753fa7","public_ip_v4":"51.158.64.118","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/1cd57439-c514-4f46-abf5-bd5f8b5ec597","error_message":""}]}' + headers: + Content-Length: + - "603" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9180e56f-3119-460f-adeb-2ef596bad85e + status: 200 OK + code: 200 + duration: 36.18ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:10.856054Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 26d77aa2-f7fb-463d-9897-a2229e6b8254 + status: 200 OK + code: 200 + duration: 33.154958ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 7a6fa414-8121-4a8a-9897-989d39b77ee6 + status: 200 OK + code: 200 + duration: 26.143583ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e6f31386-4410-4d41-97f2-0aa5bf376f0d + status: 200 OK + code: 200 + duration: 32.922917ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minima-test-pool-minimal--753fa7 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--753fa7&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"7a83308e-21b2-4f0d-9d4f-9102e67e77aa","address":"fd5f:519c:6d46:ec4c:bb11:58b4:41a7:56ec/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:38:30.229905Z","updated_at":"2026-01-29T16:38:30.229905Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"11d8939f-b2a0-4e0f-9e50-30f46da2b820","address":"172.17.88.4/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:38:30.083238Z","updated_at":"2026-01-29T16:38:30.083238Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e2854e1d-3079-480b-849f-c47cd95a3545 + status: 200 OK + code: 200 + duration: 39.440291ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1b140482-d7b4-4f44-9fb6-ab7be84da89e + status: 200 OK + code: 200 + duration: 32.287042ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 758 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:10.880573Z","name":"test-pool-minimal-2","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "758" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3e20b3d8-1478-4ec2-ae0b-0aac020e1899 + status: 200 OK + code: 200 + duration: 26.962166ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9fc7880e-792e-4652-b791-d877643b6ead + status: 200 OK + code: 200 + duration: 29.179959ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - 79f32ab2-8e91-43f1-acf5-f3547efea8a2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=79f32ab2-8e91-43f1-acf5-f3547efea8a2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 603 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"753fa7c1-5748-46cf-89de-0ec31e0b5ccf","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.941314Z","updated_at":"2026-01-29T16:39:10.870758Z","pool_id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minima-test-pool-minimal--753fa7","public_ip_v4":"51.158.64.118","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/1cd57439-c514-4f46-abf5-bd5f8b5ec597","error_message":""}]}' + headers: + Content-Length: + - "603" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 720356ce-ee02-4bcd-bbd8-89eb25fd8102 + status: 200 OK + code: 200 + duration: 23.211292ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ef82146d-6ab0-48a6-8996-5e35ffd549c5 + status: 200 OK + code: 200 + duration: 23.543541ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 09e10096-a900-4d6d-b0e3-466cee4125eb + status: 200 OK + code: 200 + duration: 26.631959ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 698870a5-eccc-4505-aba3-22c28f9a3937 + status: 200 OK + code: 200 + duration: 26.045208ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minima-test-pool-minimal--753fa7 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minima-test-pool-minimal--753fa7&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"7a83308e-21b2-4f0d-9d4f-9102e67e77aa","address":"fd5f:519c:6d46:ec4c:bb11:58b4:41a7:56ec/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:38:30.229905Z","updated_at":"2026-01-29T16:38:30.229905Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"11d8939f-b2a0-4e0f-9e50-30f46da2b820","address":"172.17.88.4/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:38:30.083238Z","updated_at":"2026-01-29T16:38:30.083238Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"46ed6dfc-4835-4a59-a577-1c787c2fdc9c","mac_address":"02:00:00:16:A0:F9","name":"scw-test-pool-minima-test-pool-minimal--753fa7"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9ac203c3-dcfa-44d0-beb1-914e941f44f2 + status: 200 OK + code: 200 + duration: 34.089042ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c7d3cdb1-9c94-412b-9878-cd4ace334f72 + status: 200 OK + code: 200 + duration: 99.468209ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 753fbfd9-c35f-41bf-9ecf-e8b446348a7c + status: 200 OK + code: 200 + duration: 20.686084ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:10.856054Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 38fb6a1c-73a6-4ae4-935a-9024fabb0a28 + status: 200 OK + code: 200 + duration: 35.576042ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 0e811486-48e1-4252-af95-fbb7a4cb76e0 + status: 200 OK + code: 200 + duration: 26.058458ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 95a424e2-3fdd-4157-afb2-c44bd4d2e46e + status: 200 OK + code: 200 + duration: 27.274125ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 73f004ad-ffd8-464b-8462-6a5cf3f886aa + status: 200 OK + code: 200 + duration: 46.59425ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1587d553-9f1d-4d5b-95f6-5c6ab403b3e1 + status: 200 OK + code: 200 + duration: 23.974375ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3a439b45-3d87-4009-b422-0ccf7b564931 + status: 200 OK + code: 200 + duration: 96.773292ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:39:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - eba2450c-eb0b-457d-8038-29146a9ce7cc + status: 200 OK + code: 200 + duration: 83.188625ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 74e912d1-911b-4770-8e66-6a3528f871a9 + status: 200 OK + code: 200 + duration: 100.548834ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 761 + body: '{"region":"fr-par","id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:38:26.654684Z","updated_at":"2026-01-29T16:39:15.039522Z","name":"test-pool-minimal-2","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","minimal"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "761" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 287f6e51-4797-4753-a619-b052038360e1 + status: 200 OK + code: 200 + duration: 90.986208ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/79f32ab2-8e91-43f1-acf5-f3547efea8a2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: '{"message":"resource is not found","resource":"pool","resource_id":"79f32ab2-8e91-43f1-acf5-f3547efea8a2","type":"not_found"}' + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ca8b6e4d-1e50-4d36-b9c6-224f468b8499 + status: 404 Not Found + code: 404 + duration: 36.3885ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d8428305-e696-4530-a36a-72ccb2219f39 + status: 200 OK + code: 200 + duration: 89.418083ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 834ba41a-1d1c-45a2-80e4-23ed328a351b + status: 200 OK + code: 200 + duration: 31.474208ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:15.296965Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5d8fcd39-5eb8-4064-8ab4-e2d34bd9df2b + status: 200 OK + code: 200 + duration: 24.433458ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/351411b7-4677-45c0-8cae-ef244936eaaa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 3884 + body: '{"server": {"id": "351411b7-4677-45c0-8cae-ef244936eaaa", "name": "scw-test-pool-minimal-test-pool-minimal-018701", "arch": "x86_64", "commercial_type": "PRO2-XXS", "boot_type": "local", "organization": "105bdce1-64c0-48ab-899d-868455867ecf", "project": "105bdce1-64c0-48ab-899d-868455867ecf", "hostname": "scw-test-pool-minimal-test-pool-minimal-018701", "image": {"id": "26ed5fcc-53e8-415b-807d-f4a284d55d87", "name": "k8s_base_node_instance", "organization": "51b656e3-4865-41e8-adbc-0c45bdd780db", "project": "51b656e3-4865-41e8-adbc-0c45bdd780db", "root_volume": {"volume_type": "sbs_snapshot", "id": "eb7e3383-7b15-4189-b284-a2bba45cb2b5", "size": 0, "name": ""}, "extra_volumes": {}, "public": true, "arch": "x86_64", "creation_date": "2026-01-07T13:09:03.361333+00:00", "modification_date": "2026-01-07T13:09:03.361333+00:00", "default_bootscript": null, "from_server": "", "state": "available", "tags": [], "zone": "fr-par-1"}, "volumes": {"0": {"boot": true, "volume_type": "sbs_volume", "id": "3565a99e-9aab-4a1c-858a-c6a35efb1fb7", "state": "available", "zone": "fr-par-1"}}, "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "pool=d230793a-c334-4f86-89e5-5f5237b160e2", "pool-name=test-pool-minimal", "runtime=containerd", "managed=true", "terraform-test", "scaleway_k8s_cluster", "default", "node=01870108-1112-499a-b9c0-d06b45a0e4af"], "state": "running", "protected": false, "state_detail": "booting kernel", "public_ip": {"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, "public_ips": [{"id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928", "address": "51.158.97.50", "dynamic": false, "gateway": "62.210.0.1", "netmask": "32", "family": "inet", "provisioning_mode": "dhcp", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "ea40d5d5-ff55-4e66-965a-2b2f32c21928"}, {"id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a", "address": "2001:bc8:710:a9cf:dc00:ff:feea:c87d", "dynamic": false, "gateway": "fe80::dc00:ff:feea:c87e", "netmask": "64", "family": "inet6", "provisioning_mode": "slaac", "tags": ["kapsule=d3b82400-e284-4c22-862a-ce2f8399176e", "node-name=scw-test-pool-minimal-test-pool-minimal-018701"], "state": "attached", "ipam_id": "25ad55d2-813a-481d-bc8f-fb80c3cc6c1a"}], "mac_address": "de:00:00:ea:c8:7d", "routed_ip_enabled": true, "ipv6": null, "extra_networks": [], "dynamic_ip_required": false, "enable_ipv6": false, "private_ip": null, "creation_date": "2026-01-29T16:37:38.156699+00:00", "modification_date": "2026-01-29T16:37:43.393943+00:00", "bootscript": null, "security_group": {"id": "040288eb-a7e7-42b4-9756-80e196b43a2c", "name": "Kapsule default security group"}, "location": {"zone_id": "fr-par-1", "platform_id": "14", "cluster_id": "59", "hypervisor_id": "401", "node_id": "26"}, "maintenances": [], "allowed_actions": ["poweroff", "terminate", "reboot", "stop_in_place", "backup"], "placement_group": null, "private_nics": [{"id": "68774b01-47a1-41a5-b7a9-5380c7227e37", "private_network_id": "0ab4d4d6-5d6e-47ef-8394-acdadd31e911", "server_id": "351411b7-4677-45c0-8cae-ef244936eaaa", "mac_address": "02:00:00:14:ae:dd", "state": "available", "creation_date": "2026-01-29T16:37:40.076641+00:00", "modification_date": "2026-01-29T16:37:40.176659+00:00", "zone": "fr-par-1", "tags": [], "ipam_ip_ids": ["859096ac-aa72-4f27-b896-3eebbb09304c", "cb2063de-c269-4ea2-824d-48123ef8e6f9"]}], "zone": "fr-par-1", "filesystems": [], "end_of_service": false, "dns": "351411b7-4677-45c0-8cae-ef244936eaaa.pub.instances.scw.cloud"}}' + headers: + Content-Length: + - "3884" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 29646dbf-e88a-405f-b9d6-b737b648c638 + status: 200 OK + code: 200 + duration: 190.94025ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 407 + body: '{"id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","name":"tf-vpc-tender-wilbur","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.488510Z","updated_at":"2026-01-29T16:36:03.488510Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_default":false,"private_network_count":1,"routing_enabled":true,"custom_routes_propagation_enabled":true,"region":"fr-par"}' + headers: + Content-Length: + - "407" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cd6d3e52-3d33-438e-a466-8e757f4a5d9b + status: 200 OK + code: 200 + duration: 34.180625ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1063 + body: '{"id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","name":"test-pool-minimal","tags":[],"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnets":[{"id":"8760de28-4cb7-43c7-801d-373901f545a9","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"172.17.88.0/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"},{"id":"7318d640-cfa0-48da-8e40-c16772f9d0c2","created_at":"2026-01-29T16:36:03.974533Z","updated_at":"2026-01-29T16:36:03.974533Z","subnet":"fd5f:519c:6d46:ec4c::/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad"}],"vpc_id":"54cd177b-d51b-4eff-b2f0-336dd3f426ad","dhcp_enabled":true,"default_route_propagation_enabled":false,"region":"fr-par"}' + headers: + Content-Length: + - "1063" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d2303cc9-d558-496f-8162-37cad7e177b9 + status: 200 OK + code: 200 + duration: 96.475708ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1465a411-5444-4d81-b3a5-d05d36db10a4 + status: 200 OK + code: 200 + duration: 23.476791ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1672 + body: '{"name":"kubeconfig","content_type":"application/octet-stream","content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogInRlc3QtcG9vbC1taW5pbWFsIgogIGNsdXN0ZXI6CiAgICBjZXJ0aWZpY2F0ZS1hdXRob3JpdHktZGF0YTogTFMwdExTMUNSVWRKVGlCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2sxSlNVSlhha05EUVZGSFowRjNTVUpCWjBsQ1FVUkJTMEpuWjNGb2EycFBVRkZSUkVGcVFWWk5VazEzUlZGWlJGWlJVVVJGZDNCeVpGZEtiR050Tld3S1pFZFdlazFDTkZoRVZFa3lUVVJGZVU5RVJUSk5lbGwzVGxadldFUlVUVEpOUkVWNVQwUkZNazE2V1hkT1ZtOTNSbFJGVkUxQ1JVZEJNVlZGUVhoTlN3cGhNMVpwV2xoS2RWcFlVbXhqZWtKYVRVSk5SMEo1Y1VkVFRUUTVRV2RGUjBORGNVZFRUVFE1UVhkRlNFRXdTVUZDU20xRFlqbEdjMVpMY25kc2FHZHBDa3hKVFdScWFuQmxUbk5ESzFoc01YRm5hbmhrVmk5VVkzSlRaV3RUTUZKaU1uaG1lbUpsTHl0aldUaDRNekU0TlhjelkxRjNUbmRuVVV4WVkwSkhiVU1LUlVaWE56UmlVMnBSYWtKQlRVRTBSMEV4VldSRWQwVkNMM2RSUlVGM1NVTndSRUZRUW1kT1ZraFNUVUpCWmpoRlFsUkJSRUZSU0M5TlFqQkhRVEZWWkFwRVoxRlhRa0pSTmxGT1ZWVlpZMFUxVVhkU015dDZWVzFFZDBkM09WYzRaazlxUVV0Q1oyZHhhR3RxVDFCUlVVUkJaMDVJUVVSQ1JVRnBRbmQzY21wMUNtcENURFY1UWtNNU9TdHZkRVU1WTI5SGJEbEdXRTVZVDAxNFUycHJRUzlSVW5VNGJHSm5TV2RRZUZsdFRVeEhjR2xYVUVWelNIbDNXR1JNYWpRMFQwNEtXbWx3VEU5c1NtUjBRbkE1UmpGMVpWSlNXVDBLTFMwdExTMUZUa1FnUTBWU1ZFbEdTVU5CVkVVdExTMHRMUW89CiAgICBzZXJ2ZXI6IGh0dHBzOi8vZDNiODI0MDAtZTI4NC00YzIyLTg2MmEtY2UyZjgzOTkxNzZlLmFwaS5rOHMuZnItcGFyLnNjdy5jbG91ZDo2NDQzCmNvbnRleHRzOgotIG5hbWU6IGFkbWluQHRlc3QtcG9vbC1taW5pbWFsCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJ0ZXN0LXBvb2wtbWluaW1hbCIKICAgIHVzZXI6IHRlc3QtcG9vbC1taW5pbWFsLWFkbWluCmN1cnJlbnQtY29udGV4dDogYWRtaW5AdGVzdC1wb29sLW1pbmltYWwKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiB0ZXN0LXBvb2wtbWluaW1hbC1hZG1pbgogIHVzZXI6CiAgICB0b2tlbjogR01vQjJMVjJaQTM3T09JZWNpdTA4ZUxCNDdmb2J3R0hjN1EwbXdkRXlTZ1lwNWgxMWg2Q08wTkE="}' + headers: + Content-Length: + - "1672" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 52b48659-ecb8-4942-9f74-31fa011ea6de + status: 200 OK + code: 200 + duration: 87.582916ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 08f2f071-e338-46d3-9272-a9a24491ff65 + status: 200 OK + code: 200 + duration: 23.707375ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:15.296965Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - d07167ed-d231-4c96-b04f-4beb0f1a4b7c + status: 200 OK + code: 200 + duration: 28.151084ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b7a30e0f-abc1-45ab-a9ab-5ba0a27cb9d7 + status: 200 OK + code: 200 + duration: 28.464542ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:31 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 1b95ecf9-238c-438c-8137-e06a182969c0 + status: 200 OK + code: 200 + duration: 37.586167ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 756 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:38:22.223175Z","name":"test-pool-minimal","status":"ready","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "756" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - bbbb248b-4051-4c37-9d24-d7d6e434401c + status: 200 OK + code: 200 + duration: 92.435ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_asc + page: + - "1" + pool_id: + - d230793a-c334-4f86-89e5-5f5237b160e2 + status: + - unknown + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e/nodes?order_by=created_at_asc&page=1&pool_id=d230793a-c334-4f86-89e5-5f5237b160e2&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 631 + body: '{"total_count":1,"nodes":[{"region":"fr-par","id":"01870108-1112-499a-b9c0-d06b45a0e4af","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:37:37.134340Z","updated_at":"2026-01-29T16:39:15.296965Z","pool_id":"d230793a-c334-4f86-89e5-5f5237b160e2","status":"ready","conditions":{"DiskPressure":"False","MemoryPressure":"False","NetworkUnavailable":"False","PIDPressure":"False","Ready":"True"},"name":"scw-test-pool-minimal-test-pool-minimal-018701","public_ip_v4":"51.158.97.50","public_ip_v6":null,"provider_id":"scaleway://instance/fr-par-1/351411b7-4677-45c0-8cae-ef244936eaaa","error_message":""}]}' + headers: + Content-Length: + - "631" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 03e43239-7df2-419a-8d88-2e35786adfe7 + status: 200 OK + code: 200 + duration: 34.481291ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1559 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:37:26.102634Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"ready","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1559" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ef2b6f8f-df1d-46ea-96f5-2417e68977b9 + status: 200 OK + code: 200 + duration: 93.516541ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + order_by: + - created_at_desc + project_id: + - 105bdce1-64c0-48ab-899d-868455867ecf + resource_name: + - scw-test-pool-minimal-test-pool-minimal-018701 + resource_type: + - unknown_type + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_name=scw-test-pool-minimal-test-pool-minimal-018701&resource_type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1092 + body: '{"total_count":2,"ips":[{"id":"cb2063de-c269-4ea2-824d-48123ef8e6f9","address":"fd5f:519c:6d46:ec4c:9dd9:eb9d:5806:7f69/64","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":true,"created_at":"2026-01-29T16:37:40.370617Z","updated_at":"2026-01-29T16:37:40.370617Z","source":{"subnet_id":"7318d640-cfa0-48da-8e40-c16772f9d0c2"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null},{"id":"859096ac-aa72-4f27-b896-3eebbb09304c","address":"172.17.88.3/22","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"created_at":"2026-01-29T16:37:40.265625Z","updated_at":"2026-01-29T16:37:40.265625Z","source":{"subnet_id":"8760de28-4cb7-43c7-801d-373901f545a9"},"resource":{"type":"instance_private_nic","id":"68774b01-47a1-41a5-b7a9-5380c7227e37","mac_address":"02:00:00:14:AE:DD","name":"scw-test-pool-minimal-test-pool-minimal-018701"},"tags":[],"reverses":[],"region":"fr-par","zone":null}]}' + headers: + Content-Length: + - "1092" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - cd60d04b-31b0-4bc1-acbb-46fd7233a804 + status: 200 OK + code: 200 + duration: 27.208334ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - c592195d-3973-414c-84ba-7494ec41acc9 + status: 200 OK + code: 200 + duration: 123.576042ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:32 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 6ac17ec8-8bf8-4646-84e4-5f8a5e4815a6 + status: 200 OK + code: 200 + duration: 25.407834ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 9d9cb4b4-deb6-467a-ad40-cc646c869535 + status: 200 OK + code: 200 + duration: 498.218791ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e8aaf608-fcfc-4304-af15-13a9f8255f53 + status: 200 OK + code: 200 + duration: 114.580208ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 3b8279be-f6fe-4a03-aa0f-7ed6135aed16 + status: 200 OK + code: 200 + duration: 106.426958ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 759 + body: '{"region":"fr-par","id":"d230793a-c334-4f86-89e5-5f5237b160e2","cluster_id":"d3b82400-e284-4c22-862a-ce2f8399176e","created_at":"2026-01-29T16:36:12.033440Z","updated_at":"2026-01-29T16:40:32.752529Z","name":"test-pool-minimal","status":"deleting","version":"1.35.0","node_type":"pro2_xxs","autoscaling":true,"size":1,"min_size":1,"max_size":1,"container_runtime":"containerd","autohealing":true,"tags":["terraform-test","scaleway_k8s_cluster","default"],"placement_group_id":null,"kubelet_args":{},"upgrade_policy":{"max_unavailable":1,"max_surge":0},"zone":"fr-par-1","root_volume_type":"sbs_5k","root_volume_size":20000000000,"public_ip_disabled":false,"security_group_id":"040288eb-a7e7-42b4-9756-80e196b43a2c","labels":{},"taints":[],"startup_taints":[]}' + headers: + Content-Length: + - "759" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ab38db48-a7a3-4d38-b21b-1a42eaa26c86 + status: 200 OK + code: 200 + duration: 108.176333ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: '{"message":"resource is not found","resource":"pool","resource_id":"d230793a-c334-4f86-89e5-5f5237b160e2","type":"not_found"}' + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b758e1ca-c514-46d3-90c2-b7a2e9bfe0c8 + status: 404 Not Found + code: 404 + duration: 24.398625ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + form: + with_additional_resources: + - "false" + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e?with_additional_resources=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:41:48.795157Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 95f1d0dc-0c22-4d2d-82c9-d2f0660fde16 + status: 200 OK + code: 200 + duration: 195.001084ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 1562 + body: '{"region":"fr-par","id":"d3b82400-e284-4c22-862a-ce2f8399176e","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","created_at":"2026-01-29T16:36:05.457784Z","updated_at":"2026-01-29T16:41:48.795157Z","type":"kapsule","name":"test-pool-minimal","description":"","status":"deleting","version":"1.35.0","cni":"calico","tags":["terraform-test","scaleway_k8s_cluster","minimal"],"cluster_url":"https://d3b82400-e284-4c22-862a-ce2f8399176e.api.k8s.fr-par.scw.cloud:6443","dns_wildcard":"*.d3b82400-e284-4c22-862a-ce2f8399176e.nodes.k8s.fr-par.scw.cloud","autoscaler_config":{"scale_down_disabled":false,"scale_down_delay_after_add":"10m","estimator":"binpacking","expander":"random","ignore_daemonsets_utilization":false,"balance_similar_node_groups":false,"expendable_pods_priority_cutoff":0,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5,"max_graceful_termination_sec":0},"auto_upgrade":{"enabled":false,"maintenance_window":{"start_hour":0,"day":"any"}},"upgrade_available":false,"feature_gates":[],"admission_plugins":[],"open_id_connect_config":{"issuer_url":"","client_id":"","username_claim":"","username_prefix":"","groups_claim":[],"groups_prefix":"","required_claim":[]},"apiserver_cert_sans":[],"private_network_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","commitment_ends_at":"2026-01-29T16:36:05.457792Z","acl_available":true,"iam_nodes_group_id":"e52affba-65c4-46d2-9cbc-94c97dcd64d4","pod_cidr":"100.64.0.0/15","service_cidr":"10.32.0.0/20","service_dns_ip":"10.32.0.10"}' + headers: + Content-Length: + - "1562" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - b170121e-fc46-4b0d-8079-9257d6b87bb5 + status: 200 OK + code: 200 + duration: 103.493042ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d3b82400-e284-4c22-862a-ce2f8399176e","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - ff9846b9-7c8b-44f5-a8c7-c57bc7745efa + status: 404 Not Found + code: 404 + duration: 33.4915ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - e6e6907b-4d05-4fc0-8e9c-fd9066aec304 + status: 204 No Content + code: 204 + duration: 1.201120959s + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/54cd177b-d51b-4eff-b2f0-336dd3f426ad + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 0 + body: "" + headers: + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - fc51e496-79bf-4c63-b0ed-d8f6ea752391 + status: 204 No Content + code: 204 + duration: 233.34675ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/pools/d230793a-c334-4f86-89e5-5f5237b160e2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 125 + body: '{"message":"resource is not found","resource":"pool","resource_id":"d230793a-c334-4f86-89e5-5f5237b160e2","type":"not_found"}' + headers: + Content-Length: + - "125" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - eaa1539a-217a-48c9-a644-ef0456254866 + status: 404 Not Found + code: 404 + duration: 22.781625ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/d3b82400-e284-4c22-862a-ce2f8399176e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 128 + body: '{"message":"resource is not found","resource":"cluster","resource_id":"d3b82400-e284-4c22-862a-ce2f8399176e","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 5061d573-52dc-4ab8-b1d9-9ea11ac4de7a + status: 404 Not Found + code: 404 + duration: 22.405ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + host: api.scaleway.com + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.6; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0ab4d4d6-5d6e-47ef-8394-acdadd31e911 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 136 + body: '{"message":"resource is not found","resource":"private_network","resource_id":"0ab4d4d6-5d6e-47ef-8394-acdadd31e911","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Type: + - application/json + Date: + - Thu, 29 Jan 2026 16:41:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + X-Request-Id: + - 4f76f145-c074-4af3-b033-3fb1d8b52c8f + status: 404 Not Found + code: 404 + duration: 20.909416ms diff --git a/provider/sdkv2_test.go b/provider/sdkv2_test.go index 81e9180e83..f4de732218 100644 --- a/provider/sdkv2_test.go +++ b/provider/sdkv2_test.go @@ -212,9 +212,6 @@ func TestSDKProvider_ResourceIdentityNotEmpty(t *testing.T) { "scaleway_ipam_ip", "scaleway_ipam_ip_reverse_dns", "scaleway_job_definition", - "scaleway_k8s_acl", - "scaleway_k8s_cluster", - "scaleway_k8s_pool", "scaleway_key_manager_key", "scaleway_lb", "scaleway_lb_acl",