diff --git a/docs/resources/k8s_acl.md b/docs/resources/k8s_acl.md new file mode 100644 index 0000000000..225940c24a --- /dev/null +++ b/docs/resources/k8s_acl.md @@ -0,0 +1,108 @@ +--- +subcategory: "Kubernetes" +page_title: "Scaleway: scaleway_k8s_acl" +--- + +# Resource: scaleway_k8s_acl + +Creates and manages Scaleway Kubernetes Cluster authorized IPs. +For more information, please refer to the [API documentation](https://www.scaleway.com/en/developers/api/kubernetes/#path-access-control-list-add-new-acls). + +~> **Important:** When creating a Cluster, it comes with a default ACL rule allowing all ranges `0.0.0.0/0`. +Defining custom ACLs with Terraform will overwrite this rule, but it will be recreated automatically when deleting the ACL resource. + +## Example Usage + +### Basic + +```terraform +resource "scaleway_vpc_private_network" "acl_basic" {} + +resource "scaleway_k8s_cluster" "acl_basic" { + name = "acl-basic" + version = "1.32.2" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id +} + +resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + acl_rules { + ip = "1.2.3.4/32" + description = "Allow 1.2.3.4" + } + acl_rules { + scaleway_ranges = true + description = "Allow all Scaleway ranges" + } +} +``` + +### Full-isolation + +```terraform +resource "scaleway_vpc_private_network" "acl_basic" {} + +resource "scaleway_k8s_cluster" "acl_basic" { + name = "acl-basic" + version = "1.32.2" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id +} + +resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + no_ip_allowed = true +} +``` + +## Argument Reference + +The following arguments are supported: + +- `cluster_id` - (Required) UUID of the cluster. The ID of the cluster is also the ID of the ACL resource, as there can only be one per cluster. + +~> **Important:** Updates to `cluster_id` will recreate the ACL. + +- `no_ip_allowed` - (Optional) If set to true, no IP will be allowed and the cluster will be in full-isolation. + +~> **Important:** This field cannot be set to true if the `acl_rules` block is defined. + +- `acl_rules` - (Optional) A list of ACLs (structure is described below) + +~> **Important:** This block cannot be defined if the `no_ip_allowed` field is set to true. + +- `region` - (Defaults to [provider](../index.md#arguments-reference) `region`) The [region](../guides/regions_and_zones.md#regions) in which the ACL rule should be created. + +The `acl_rules` block supports: + +- `ip` - (Optional) The IP range to whitelist in [CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation) + +~> **Important:** If the `ip` field is set, `scaleway_ranges` cannot be set to true in the same rule. + +- `scaleway_ranges` - (Optional) Allow access to cluster from all Scaleway ranges as defined in [Scaleway Network Information - IP ranges used by Scaleway](https://www.scaleway.com/en/docs/console/account/reference-content/scaleway-network-information/#ip-ranges-used-by-scaleway). +Only one rule with this field set to true can be added. + +~> **Important:** If the `scaleway_ranges` field is set to true, the `ip` field cannot be set on the same rule. + +- `description` - (Optional) A text describing this rule. + +## Attributes Reference + +In addition to all arguments above, the following attributes are exported: + +- `id` - The ID of the ACL resource. It is the same as the ID of the cluster. + +~> **Important:** Kubernetes ACLs' IDs are [regional](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{region}/{id}`, e.g. `fr-par/11111111-1111-1111-1111-111111111111` + +- `acl_rules.#.id` - The ID of each individual ACL rule. + +## Import + +Kubernetes ACLs can be imported using the `{region}/{cluster-id}`, e.g. + +```bash +terraform import scaleway_k8s_acl.acl01 fr-par/11111111-1111-1111-1111-111111111111 +``` \ No newline at end of file diff --git a/internal/provider/provider.go b/internal/provider/provider.go index ff00f0114f..1ad1d29604 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -185,6 +185,7 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_ipam_ip": ipam.ResourceIP(), "scaleway_ipam_ip_reverse_dns": ipam.ResourceIPReverseDNS(), "scaleway_job_definition": jobs.ResourceDefinition(), + "scaleway_k8s_acl": k8s.ResourceACL(), "scaleway_k8s_cluster": k8s.ResourceCluster(), "scaleway_k8s_pool": k8s.ResourcePool(), "scaleway_lb": lb.ResourceLb(), diff --git a/internal/services/k8s/acl.go b/internal/services/k8s/acl.go new file mode 100644 index 0000000000..dfafd168da --- /dev/null +++ b/internal/services/k8s/acl.go @@ -0,0 +1,284 @@ +package k8s + +import ( + "context" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" + "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "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/locality" + "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" +) + +func ResourceACL() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceACLCreate, + ReadContext: ResourceACLRead, + UpdateContext: ResourceACLUpdate, + DeleteContext: ResourceACLDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + Timeouts: &schema.ResourceTimeout{ + Create: schema.DefaultTimeout(defaultK8SClusterTimeout), + Read: schema.DefaultTimeout(defaultK8SClusterTimeout), + Update: schema.DefaultTimeout(defaultK8SClusterTimeout), + Delete: schema.DefaultTimeout(defaultK8SClusterTimeout), + Default: schema.DefaultTimeout(defaultK8SClusterTimeout), + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "cluster_id": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateDiagFunc: verify.IsUUIDorUUIDWithLocality(), + DiffSuppressFunc: dsf.Locality, + Description: "Cluster on which the ACL should be applied", + }, + "no_ip_allowed": { + Type: schema.TypeBool, + Optional: true, + Default: false, + Description: "If true, no IP will be allowed and the cluster will be fully isolated", + ExactlyOneOf: []string{"acl_rules"}, + }, + "acl_rules": { + Type: schema.TypeList, + Optional: true, + Description: "The list of network rules that manage inbound traffic", + ExactlyOneOf: []string{"no_ip_allowed"}, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "ip": { + Type: schema.TypeString, + Optional: true, + Description: "The IP subnet to be allowed", + ValidateFunc: validation.IsCIDR, + }, + "scaleway_ranges": { + Type: schema.TypeBool, + Optional: true, + Description: "Allow access to cluster from all Scaleway ranges", + }, + "description": { + Type: schema.TypeString, + Optional: true, + Description: "The description of the ACL rule", + }, + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the ACL rule", + }, + }, + }, + }, + // Common + "region": regional.Schema(), + }, + CustomizeDiff: cdf.LocalityCheck("cluster_id"), + } +} + +func ResourceACLCreate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, _, err := newAPIWithRegion(d, m) + if err != nil { + return diag.FromErr(err) + } + + region, clusterID, err := regional.ParseID(d.Get("cluster_id").(string)) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitCluster(ctx, api, region, locality.ExpandID(clusterID), d.Timeout(schema.TimeoutCreate)) + if err != nil { + return diag.FromErr(err) + } + + acls, err := expandACL(d.Get("acl_rules").([]interface{})) + if err != nil { + return diag.FromErr(err) + } + + createReq := &k8s.SetClusterACLRulesRequest{ + Region: region, + ClusterID: clusterID, + ACLs: acls, + } + + _, err = api.SetClusterACLRules(createReq, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + regionalID := regional.NewID(region, clusterID).String() + d.SetId(regionalID) + + return ResourceACLRead(ctx, d, m) +} + +func ResourceACLRead(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, clusterID, err := NewAPIWithRegionAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitCluster(ctx, api, region, clusterID, d.Timeout(schema.TimeoutRead)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + acls, err := api.ListClusterACLRules(&k8s.ListClusterACLRulesRequest{ + Region: region, + ClusterID: clusterID, + }, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + _ = d.Set("cluster_id", regional.NewIDString(region, clusterID)) + _ = d.Set("region", region) + _ = d.Set("acl_rules", flattenACL(acls.Rules)) + + return nil +} + +func ResourceACLUpdate(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, clusterID, err := NewAPIWithRegionAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitCluster(ctx, api, region, clusterID, d.Timeout(schema.TimeoutUpdate)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + if d.HasChanges("acl_rules", "no_ip_allowed") { + acls, err := expandACL(d.Get("acl_rules").([]interface{})) + if err != nil { + return diag.FromErr(err) + } + + req := &k8s.SetClusterACLRulesRequest{ + Region: region, + ClusterID: clusterID, + ACLs: acls, + } + + _, err = api.SetClusterACLRules(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + + return ResourceACLRead(ctx, d, m) +} + +func ResourceACLDelete(ctx context.Context, d *schema.ResourceData, m interface{}) diag.Diagnostics { + api, region, clusterID, err := NewAPIWithRegionAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitCluster(ctx, api, region, clusterID, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + allowedIPs, err := types.ExpandIPNet("0.0.0.0/0") + if err != nil { + return diag.FromErr(err) + } + + req := &k8s.SetClusterACLRulesRequest{ + Region: region, + ClusterID: clusterID, + ACLs: []*k8s.ACLRuleRequest{ + { + IP: &allowedIPs, + Description: "Automatically generated after scaleway_k8s_acl resource deletion", + }, + }, + } + + _, err = api.SetClusterACLRules(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + _, err = waitCluster(ctx, api, region, clusterID, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + return nil +} + +func expandACL(data []interface{}) ([]*k8s.ACLRuleRequest, error) { + expandedACLs := []*k8s.ACLRuleRequest(nil) + + for _, rule := range data { + r := rule.(map[string]interface{}) + expandedRule := &k8s.ACLRuleRequest{} + + if ipRaw, ok := r["ip"]; ok && ipRaw != "" { + ip, err := types.ExpandIPNet(ipRaw.(string)) + if err != nil { + return nil, err + } + + expandedRule.IP = &ip + } + + if scwRangesRaw, ok := r["scaleway_ranges"]; ok && scwRangesRaw.(bool) { + expandedRule.ScalewayRanges = scw.BoolPtr(true) + } + + if descriptionRaw, ok := r["description"]; ok && descriptionRaw.(string) != "" { + expandedRule.Description = descriptionRaw.(string) + } + + expandedACLs = append(expandedACLs, expandedRule) + } + + return expandedACLs, nil +} + +func flattenACL(rules []*k8s.ACLRule) interface{} { + if rules == nil { + return nil + } + + flattenedACLs := []map[string]interface{}(nil) + + for _, rule := range rules { + flattenedRule := map[string]interface{}{ + "id": rule.ID, + "scaleway_ranges": rule.ScalewayRanges, + "description": rule.Description, + } + if rule.IP != nil { + flattenedRule["ip"] = rule.IP.String() + } + + flattenedACLs = append(flattenedACLs, flattenedRule) + } + + return flattenedACLs +} diff --git a/internal/services/k8s/acl_test.go b/internal/services/k8s/acl_test.go new file mode 100644 index 0000000000..c1a01fe2a8 --- /dev/null +++ b/internal/services/k8s/acl_test.go @@ -0,0 +1,205 @@ +package k8s_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + k8sSDK "github.com/scaleway/scaleway-sdk-go/api/k8s/v1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/k8s" +) + +func TestAccACL_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + clusterName := "k8s-acl-basic" + latestK8sVersion := testAccK8SClusterGetLatestK8SVersion(tt) + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckK8SClusterDestroy(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "acl_basic" {} + + resource "scaleway_k8s_cluster" "acl_basic" { + name = "%s" + version = "%s" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id + } + + resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + acl_rules { + ip = "1.2.3.4/32" + description = "First rule" + } + }`, clusterName, latestK8sVersion), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrPair("scaleway_k8s_acl.acl_basic", "cluster_id", "scaleway_k8s_cluster.acl_basic", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "no_ip_allowed", "false"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.#", "1"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.ip", "1.2.3.4/32"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.scaleway_ranges", "false"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.description", "First rule"), + resource.TestCheckResourceAttrSet("scaleway_k8s_acl.acl_basic", "acl_rules.0.id"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "acl_basic" {} + + resource "scaleway_k8s_cluster" "acl_basic" { + name = "%s" + version = "%s" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id + } + + resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + acl_rules { + ip = "1.2.3.4/32" + } + acl_rules { + ip = "5.6.7.0/30" + scaleway_ranges = false + } + }`, clusterName, latestK8sVersion), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrPair("scaleway_k8s_acl.acl_basic", "cluster_id", "scaleway_k8s_cluster.acl_basic", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.#", "2"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.ip", "1.2.3.4/32"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.scaleway_ranges", "false"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.description", ""), + resource.TestCheckResourceAttrSet("scaleway_k8s_acl.acl_basic", "acl_rules.0.id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.ip", "5.6.7.0/30"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.scaleway_ranges", "false"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.description", ""), + resource.TestCheckResourceAttrSet("scaleway_k8s_acl.acl_basic", "acl_rules.1.id"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "acl_basic" {} + + resource "scaleway_k8s_cluster" "acl_basic" { + name = "%s" + version = "%s" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id + } + + resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + acl_rules { + ip = "1.2.3.4/32" + description = "First rule" + } + acl_rules { + scaleway_ranges = true + description = "Scaleway ranges rule" + } + }`, clusterName, latestK8sVersion), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrPair("scaleway_k8s_acl.acl_basic", "cluster_id", "scaleway_k8s_cluster.acl_basic", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.#", "2"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.ip", "1.2.3.4/32"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.scaleway_ranges", "false"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.0.description", "First rule"), + resource.TestCheckResourceAttrSet("scaleway_k8s_acl.acl_basic", "acl_rules.0.id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.ip", ""), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.scaleway_ranges", "true"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.1.description", "Scaleway ranges rule"), + resource.TestCheckResourceAttrSet("scaleway_k8s_acl.acl_basic", "acl_rules.1.id"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "acl_basic" {} + + resource "scaleway_k8s_cluster" "acl_basic" { + name = "%s" + version = "%s" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id + } + + resource "scaleway_k8s_acl" "acl_basic" { + cluster_id = scaleway_k8s_cluster.acl_basic.id + no_ip_allowed = true + }`, clusterName, latestK8sVersion), + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttrPair("scaleway_k8s_acl.acl_basic", "cluster_id", "scaleway_k8s_cluster.acl_basic", "id"), + resource.TestCheckResourceAttr("scaleway_k8s_acl.acl_basic", "no_ip_allowed", "true"), + resource.TestCheckNoResourceAttr("scaleway_k8s_acl.acl_basic", "acl_rules.#"), + testAccCheckK8SClusterAllowedIPs(tt, "scaleway_k8s_cluster.acl_basic", ""), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_vpc_private_network" "acl_basic" {} + + resource "scaleway_k8s_cluster" "acl_basic" { + name = "%s" + version = "%s" + cni = "cilium" + delete_additional_resources = true + private_network_id = scaleway_vpc_private_network.acl_basic.id + }`, clusterName, latestK8sVersion), + Check: resource.ComposeTestCheckFunc( + testAccCheckK8SClusterAllowedIPs(tt, "scaleway_k8s_cluster.acl_basic", "0.0.0.0/0"), + ), + }, + }, + }) +} + +func testAccCheckK8SClusterAllowedIPs(tt *acctest.TestTools, n string, expected string) resource.TestCheckFunc { + return func(s *terraform.State) error { + rs, ok := s.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + k8sAPI, region, clusterID, err := k8s.NewAPIWithRegionAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = k8sAPI.WaitForCluster(&k8sSDK.WaitForClusterRequest{ + Region: region, + ClusterID: clusterID, + }) + if err != nil { + return err + } + + acls, err := k8sAPI.ListClusterACLRules(&k8sSDK.ListClusterACLRulesRequest{ + Region: region, + ClusterID: clusterID, + }) + if err != nil { + return err + } + + switch { + case expected == "" && acls.TotalCount == 0: + return nil + case expected != "" && acls.TotalCount == 1 && acls.Rules[0].IP != nil && acls.Rules[0].IP.String() == expected: + return nil + default: + return fmt.Errorf("expected 1 ACL rule for subnet %q, got: %+v", expected, acls.Rules) + } + } +} diff --git a/internal/services/k8s/testdata/acl-basic.cassette.yaml b/internal/services/k8s/testdata/acl-basic.cassette.yaml new file mode 100644 index 0000000000..ce0a5fd07a --- /dev/null +++ b/internal/services/k8s/testdata/acl-basic.cassette.yaml @@ -0,0 +1,4035 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.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 + transfer_encoding: [] + trailer: {} + content_length: 4151 + uncompressed: false + body: '{"versions":[{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers","DRAAdminAccess","DRAResourceClaimDeviceStatus","DynamicResourceAllocation"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.32.3","name":"1.32.3","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","InPlacePodVerticalScaling","SidecarContainers"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.31.7","name":"1.31.7","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.30.11","name":"1.30.11","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.29.15","name":"1.29.15","region":"fr-par"},{"available_admission_plugins":["AlwaysPullImages","PodNodeSelector","PodTolerationRestriction"],"available_cnis":["cilium","calico","kilo","none"],"available_container_runtimes":["containerd"],"available_feature_gates":["HPAScaleToZero","SidecarContainers","ValidatingAdmissionPolicy","InPlacePodVerticalScaling"],"available_kubelet_args":{"containerLogMaxFiles":"uint16","containerLogMaxSize":"quantity","cpuCFSQuota":"bool","cpuCFSQuotaPeriod":"duration","cpuManagerPolicy":"enum:none|static","enableDebuggingHandlers":"bool","imageGCHighThresholdPercent":"uint32","imageGCLowThresholdPercent":"uint32","maxParallelImagePulls":"int32","maxPods":"uint16","registryBurst":"int32","registryPullQPS":"int32","serializeImagePulls":"bool"},"label":"Kubernetes 1.28.15","name":"1.28.15","region":"fr-par"}]}' + headers: + Content-Length: + - "4151" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7fac3ae9-51d2-46b2-9d38-9d428dc716ca + status: 200 OK + code: 200 + duration: 6.107145111s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 107 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-pn-zen-matsumoto","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a3abade-e1e8-4a41-b33f-8901d13a8f34 + status: 200 OK + code: 200 + duration: 961.102231ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db105f62-d00d-4cca-b18a-331ebd78bb9e + status: 200 OK + code: 200 + duration: 121.692547ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 645 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"","name":"k8s-acl-basic","description":"","tags":[],"version":"1.32.3","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":"442c578b-9d85-4be7-992d-2c537212bed2"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1452 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:06.361415Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 47b98100-33c4-4838-9117-e9a5083877ac + status: 200 OK + code: 200 + duration: 1.92941764s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1452 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"creating","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:06.361415Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1452" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a8c5e63-496d-41c7-a7f1-38c2236f25fb + status: 200 OK + code: 200 + duration: 214.828907ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1493 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:08.279773Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1493" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a54936c-a158-47c4-98c7-96a92c1e9066 + status: 200 OK + code: 200 + duration: 199.399631ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/pools?order_by=created_at_asc&page=1&status=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"pools":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59df9f01-56df-4353-86c7-9180f699ad98 + status: 200 OK + code: 200 + duration: 212.788434ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1493 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:08.279773Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1493" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8568f6a2-eaa8-425f-80c6-da575206ded2 + status: 200 OK + code: 200 + duration: 2.048824364s + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0bc47bf-7b91-4c2b-8ad7-18db91f9a45d + status: 200 OK + code: 200 + duration: 221.670051ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1493 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"pool_required","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:08.279773Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1493" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f44707d-09ef-42fa-91d1-53bb4d3c8cf2 + status: 200 OK + code: 200 + duration: 363.395411ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"acls":[{"ip":"1.2.3.4/32","description":"First rule"}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 104 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"241705f7-9ca4-48d8-a1f4-b79c86ce6328","ip":"1.2.3.4/32"}]}' + headers: + Content-Length: + - "104" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0329f766-4ec7-4de2-9481-935c1b9f2529 + status: 200 OK + code: 200 + duration: 411.02615ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb81fa67-4deb-412f-9e67-f3244caf6c75 + status: 200 OK + code: 200 + duration: 108.908549ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 121 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"241705f7-9ca4-48d8-a1f4-b79c86ce6328","ip":"1.2.3.4/32"}],"total_count":1}' + headers: + Content-Length: + - "121" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe1c3630-ac49-4cc6-8f64-b4726b35f865 + status: 200 OK + code: 200 + duration: 215.834637ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec558b77-5e7a-4062-8339-44b63e31e6e5 + status: 200 OK + code: 200 + duration: 188.403472ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b8aacee-6117-4e7b-987d-f17fbd19a61d + status: 200 OK + code: 200 + duration: 745.618704ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bc22157-759f-4fec-872d-8bd117f87db1 + status: 200 OK + code: 200 + duration: 219.46228ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ad7938f-0c08-470b-9d40-2d414d1e7ab1 + status: 200 OK + code: 200 + duration: 409.438883ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 121 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"241705f7-9ca4-48d8-a1f4-b79c86ce6328","ip":"1.2.3.4/32"}],"total_count":1}' + headers: + Content-Length: + - "121" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0cd9a4b-cf41-4a4e-8f7b-824b8e9c1d00 + status: 200 OK + code: 200 + duration: 194.468994ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01e35e9b-c658-495b-9ac2-0244007c7d14 + status: 200 OK + code: 200 + duration: 198.050628ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c6621f6-9ca3-4fea-88ae-0df4940b93de + status: 200 OK + code: 200 + duration: 295.258191ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a91da5d2-658e-470e-a6a0-0115ff754788 + status: 200 OK + code: 200 + duration: 794.121045ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8eb799dd-51e7-4f63-8289-b80ad60d9494 + status: 200 OK + code: 200 + duration: 419.497929ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 121 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"241705f7-9ca4-48d8-a1f4-b79c86ce6328","ip":"1.2.3.4/32"}],"total_count":1}' + headers: + Content-Length: + - "121" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28274ca0-4332-4656-ad79-e154441bbced + status: 200 OK + code: 200 + duration: 232.815257ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:15.321830Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b325bf51-f3ed-4ab7-a347-d26e3396b2b1 + status: 200 OK + code: 200 + duration: 166.041311ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 84 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"acls":[{"ip":"1.2.3.4/32","description":""},{"ip":"5.6.7.0/30","description":""}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 178 + uncompressed: false + body: '{"rules":[{"description":"","id":"591f1898-1dfd-437b-b4aa-d9259d73e3b7","ip":"1.2.3.4/32"},{"description":"","id":"8f85e845-ec04-4911-94f1-72bb85cfa2b5","ip":"5.6.7.0/30"}]}' + headers: + Content-Length: + - "178" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f7b649b0-3428-40f3-878e-c409c8e6b5f0 + status: 200 OK + code: 200 + duration: 366.781933ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d17b84d-bac5-4ad6-8f3e-03c629321b67 + status: 200 OK + code: 200 + duration: 178.64635ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195 + uncompressed: false + body: '{"rules":[{"description":"","id":"591f1898-1dfd-437b-b4aa-d9259d73e3b7","ip":"1.2.3.4/32"},{"description":"","id":"8f85e845-ec04-4911-94f1-72bb85cfa2b5","ip":"5.6.7.0/30"}],"total_count":2}' + headers: + Content-Length: + - "195" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ce93e95-c093-4f1e-a599-c3c3debac847 + status: 200 OK + code: 200 + duration: 372.475795ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4df2eea9-7f6a-46e1-8bcb-80d0c7d15c54 + status: 200 OK + code: 200 + duration: 193.485737ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5317c25-14e0-4da6-a309-2bd8b323cd42 + status: 200 OK + code: 200 + duration: 324.420757ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cb51f3a-a899-4b24-8588-92b936855bd5 + status: 200 OK + code: 200 + duration: 199.701781ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b3ef4cc5-bd2f-4348-87d7-64040ee13ebf + status: 200 OK + code: 200 + duration: 423.439864ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195 + uncompressed: false + body: '{"rules":[{"description":"","id":"591f1898-1dfd-437b-b4aa-d9259d73e3b7","ip":"1.2.3.4/32"},{"description":"","id":"8f85e845-ec04-4911-94f1-72bb85cfa2b5","ip":"5.6.7.0/30"}],"total_count":2}' + headers: + Content-Length: + - "195" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e9c5d85-a31f-4d6e-ad70-3f654a1d78ab + status: 200 OK + code: 200 + duration: 147.817182ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d08911ca-d525-484a-b5cc-b592172ffe5c + status: 200 OK + code: 200 + duration: 128.957072ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 053f5a3d-50e0-4469-9f57-7bec56d9d1ce + status: 200 OK + code: 200 + duration: 164.119008ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb54adc7-d779-4c22-a3c1-db9e042295ab + status: 200 OK + code: 200 + duration: 106.999064ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28d14eac-6e28-412c-ba19-74ff665a0a67 + status: 200 OK + code: 200 + duration: 163.102506ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 195 + uncompressed: false + body: '{"rules":[{"description":"","id":"591f1898-1dfd-437b-b4aa-d9259d73e3b7","ip":"1.2.3.4/32"},{"description":"","id":"8f85e845-ec04-4911-94f1-72bb85cfa2b5","ip":"5.6.7.0/30"}],"total_count":2}' + headers: + Content-Length: + - "195" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d740238d-7c9e-4fa0-a1f0-bf297aabed5a + status: 200 OK + code: 200 + duration: 118.356003ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:22.014445Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c810ba5-440f-4370-8fd4-dc413f0aad1b + status: 200 OK + code: 200 + duration: 214.093882ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 119 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"acls":[{"ip":"1.2.3.4/32","description":"First rule"},{"scaleway_ranges":true,"description":"Scaleway ranges rule"}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 213 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"b3037539-1165-4c68-810f-a7423adfdfea","ip":"1.2.3.4/32"},{"description":"Scaleway ranges rule","id":"7a72dfd7-939d-4de9-9582-d9e532858625","scaleway_ranges":true}]}' + headers: + Content-Length: + - "213" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1fdafc34-5d91-4735-a11b-b86046debb4d + status: 200 OK + code: 200 + duration: 269.238133ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bca742b8-fb61-4c83-a710-f5bfe6d5e2c2 + status: 200 OK + code: 200 + duration: 224.505408ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"b3037539-1165-4c68-810f-a7423adfdfea","ip":"1.2.3.4/32"},{"description":"Scaleway ranges rule","id":"7a72dfd7-939d-4de9-9582-d9e532858625","scaleway_ranges":true}],"total_count":2}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a163f4a9-b913-43c2-a395-479ea3a322f2 + status: 200 OK + code: 200 + duration: 294.921931ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e60f572c-e46a-427d-bc04-257d08ac8baf + status: 200 OK + code: 200 + duration: 206.098365ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d65e14f5-8f3e-473c-8f8c-f737b1a4bbc8 + status: 200 OK + code: 200 + duration: 218.217334ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab27cc32-59e3-478a-8585-136e1753f1d6 + status: 200 OK + code: 200 + duration: 776.779789ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3df0141-c56d-4c99-b354-52f07e39c465 + status: 200 OK + code: 200 + duration: 267.09928ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"b3037539-1165-4c68-810f-a7423adfdfea","ip":"1.2.3.4/32"},{"description":"Scaleway ranges rule","id":"7a72dfd7-939d-4de9-9582-d9e532858625","scaleway_ranges":true}],"total_count":2}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5165819d-bfa3-46bd-a8aa-dcce1e6c3b38 + status: 200 OK + code: 200 + duration: 165.016799ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8540a5a9-a86f-41f4-85b0-dfea6b993bf3 + status: 200 OK + code: 200 + duration: 169.094523ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a885bc51-fdc3-43dc-86b5-211df804828c + status: 200 OK + code: 200 + duration: 981.920007ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1292b004-78f1-42f2-802b-770b83714e9a + status: 200 OK + code: 200 + duration: 812.253766ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42c576f7-ec81-4d16-8993-c95f631eef4e + status: 200 OK + code: 200 + duration: 404.41014ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"rules":[{"description":"First rule","id":"b3037539-1165-4c68-810f-a7423adfdfea","ip":"1.2.3.4/32"},{"description":"Scaleway ranges rule","id":"7a72dfd7-939d-4de9-9582-d9e532858625","scaleway_ranges":true}],"total_count":2}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3ddc5f8-8f60-4cea-8c78-74db55ec781f + status: 200 OK + code: 200 + duration: 576.96385ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:27.434601Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2c21236-20fe-4334-a9d9-b361faa7bcf6 + status: 200 OK + code: 200 + duration: 207.271781ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 13 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"acls":null}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 12 + uncompressed: false + body: '{"rules":[]}' + headers: + Content-Length: + - "12" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8b67000-9b2b-4d1f-8e36-99ac241751fc + status: 200 OK + code: 200 + duration: 463.136811ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1488 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"updating","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.131457Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1488" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef2f521a-2b70-4e3e-b072-cb726b123dcf + status: 200 OK + code: 200 + duration: 178.590741ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10c7cfeb-e597-4d0b-aff3-db49ce3193c0 + status: 200 OK + code: 200 + duration: 155.493246ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"rules":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efe41c7c-c5df-4310-a54c-24690c2f0c5d + status: 200 OK + code: 200 + duration: 347.67639ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52f0087d-1502-4018-97a6-3e21ec70eac7 + status: 200 OK + code: 200 + duration: 535.304651ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"rules":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a653d2a6-2da5-4415-97e1-933fe36902b1 + status: 200 OK + code: 200 + duration: 174.556814ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11ca63f1-baf5-473b-ad16-b12c4ca4b330 + status: 200 OK + code: 200 + duration: 107.322367ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf45760c-f5c4-4fcf-adff-ed9f50e96618 + status: 200 OK + code: 200 + duration: 295.230258ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a1da37a-eb53-4817-a99a-272f0dc98132 + status: 200 OK + code: 200 + duration: 282.960731ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11573b13-4cbf-4405-817d-db3771a5ec48 + status: 200 OK + code: 200 + duration: 510.718458ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"rules":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 148f1e94-3c14-40cc-a3e6-446ac4db5275 + status: 200 OK + code: 200 + duration: 963.208476ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd855ff0-e13f-43b1-8928-4148f28826ec + status: 200 OK + code: 200 + duration: 226.103459ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02178129-61a3-4ce2-9932-200bca9fe3c2 + status: 200 OK + code: 200 + duration: 412.928307ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"rules":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c260322-9702-4dff-9f2f-f03b556bc97c + status: 200 OK + code: 200 + duration: 410.753198ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95402afb-65a8-43bd-bbf0-8a3cf3755b47 + status: 200 OK + code: 200 + duration: 346.158305ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 717edcc5-1f5b-4a39-9c31-79e9280626b3 + status: 200 OK + code: 200 + duration: 1.139443905s + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:35.334693Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd189383-b609-4bcf-b5e0-bb487dabe927 + status: 200 OK + code: 200 + duration: 688.815591ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 110 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"acls":[{"ip":"0.0.0.0/0","description":"Automatically generated after scaleway_k8s_acl resource deletion"}]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 157 + uncompressed: false + body: '{"rules":[{"description":"Automatically generated after scaleway_k8s_acl resource deletion","id":"e122dfc2-8646-4e7c-a601-0e5180ad0d3e","ip":"0.0.0.0/0"}]}' + headers: + Content-Length: + - "157" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36ae26b0-a8be-4b6c-949f-71878c0fe7ef + status: 200 OK + code: 200 + duration: 274.542858ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1488 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"updating","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:48.693682Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1488" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79d2bc0d-3c07-40fb-a070-86d5333ab013 + status: 200 OK + code: 200 + duration: 96.887302ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:48.837574Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c7cf38b8-eccd-4863-8404-0ee0db96e207 + status: 200 OK + code: 200 + duration: 525.55742ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:48.837574Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11c6aa4b-6d14-494a-9717-89c8e3e7c81d + status: 200 OK + code: 200 + duration: 733.66584ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/acls + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 174 + uncompressed: false + body: '{"rules":[{"description":"Automatically generated after scaleway_k8s_acl resource deletion","id":"e122dfc2-8646-4e7c-a601-0e5180ad0d3e","ip":"0.0.0.0/0"}],"total_count":1}' + headers: + Content-Length: + - "174" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef2e6e66-2989-4d5f-8f0c-22245ec65686 + status: 200 OK + code: 200 + duration: 2.677041545s + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1046 + uncompressed: false + body: '{"created_at":"2025-04-16T12:24:03.923827Z","dhcp_enabled":true,"id":"442c578b-9d85-4be7-992d-2c537212bed2","name":"tf-pn-zen-matsumoto","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-04-16T12:24:03.923827Z","id":"173f7f04-cb9f-456a-bc5e-08f0c258546a","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-04-16T12:24:03.923827Z","id":"69ff4856-a6e0-41d2-a762-b96a6bd20a24","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b8ca::/64","updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-04-16T12:24:03.923827Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + headers: + Content-Length: + - "1046" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 601abfd8-d23d-449e-b848-80983a72c340 + status: 200 OK + code: 200 + duration: 833.826976ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1485 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"ready","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:24:48.837574Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1485" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:24:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a7d7d49-8209-41eb-9e74-bab93dfaa76c + status: 200 OK + code: 200 + duration: 681.191554ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707/kubeconfig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2598 + uncompressed: false + body: '{"content":"YXBpVmVyc2lvbjogdjEKY2x1c3RlcnM6Ci0gbmFtZTogIms4cy1hY2wtYmFzaWMiCiAgY2x1c3RlcjoKICAgIGNlcnRpZmljYXRlLWF1dGhvcml0eS1kYXRhOiBMUzB0TFMxQ1JVZEpUaUJEUlZKVVNVWkpRMEZVUlMwdExTMHRDazFKU1VNMWVrTkRRV01yWjBGM1NVSkJaMGxDUVVSQlRrSm5hM0ZvYTJsSE9YY3dRa0ZSYzBaQlJFRldUVkpOZDBWUldVUldVVkZFUlhkd2NtUlhTbXdLWTIwMWJHUkhWbnBOUWpSWVJGUkpNVTFFVVhoT1ZFVjVUV3BSZDA0eGIxaEVWRTB4VFVSUmVFNVVSWGxOYWxGM1RqRnZkMFpVUlZSTlFrVkhRVEZWUlFwQmVFMUxZVE5XYVZwWVNuVmFXRkpzWTNwRFEwRlRTWGRFVVZsS1MyOWFTV2gyWTA1QlVVVkNRbEZCUkdkblJWQkJSRU5EUVZGdlEyZG5SVUpCVGt3MENqa3ZRM2RMUzJ4MVZtbHhUelJJWVZsTGFVNWFjbTFSUlRWT2NubzVNM0kxUWxsTGNIRlpSVVkzYUhGQlVVcHdjMlZOWkhSRWJEZEplVGhJVkU1QmVXWUtRMVpCVFRKTk9UUlpWemxLVVRJMmNISnNaVEZQWm1sckswMWxSblpFVUN0V1JEaFNkVlZRZGtsU2JsZENha1l6UmtGdWNDOUhUa1JqV1N0dVVGcFdid3AyZDJKbVJIbE1NMkpvWkd4NWNIZ3JkV0lyWjBabmNEWjJWMFZoUjFJNVNtZGFXbUZyVVZZclNWWkhlamhPYVU4M2IybDVaRlZ5V2tKV1ZsVm5WbTg1Q2k5V2FWQkpiRVJyVnk5dVVtdHRaV1ZNUVhSclVtbEpOMDlYU0dKeFUweHhPRTUwWVZad2FXSnFWREJ4TWpoTVJISlVjVlI2VDJ3eEswZGFka0p2UXlzS1lsVXplbkJuVFZGT0swbDBlRFptYW5kS2FGbE9TRXhKVFhrNGMzRndibG8zV1hwTFZtTnRlVUZXY25oelowRkNWbXhKTjAwd2RsVjVPSEUwYjJNcmVRcHJPR3RJU1ZONVIxSjZlRWwyVlc5b1NGZHpRMEYzUlVGQllVNURUVVZCZDBSbldVUldVakJRUVZGSUwwSkJVVVJCWjB0clRVRTRSMEV4VldSRmQwVkNDaTkzVVVaTlFVMUNRV1k0ZDBoUldVUldVakJQUWtKWlJVWklMMkk1ZVc5bFFteG9WMkpUYTBwNk5sUnViVVpSWlZNdlkwZE5RVEJIUTFOeFIxTkpZak1LUkZGRlFrTjNWVUZCTkVsQ1FWRkVRVFJqTHprdmRHcDFNbGh0TDFWUE1ucFNkSEY2VkZrMGFrUk9WV01yTUZCNGRsUmhLMXA1Y0ZCSWRFZzJMMUZTVHdwbFNIZHZOR3RHTkV4dVFuaE1aVms0TjJWaFIzVnZXWGt5YVRWS09YSm9WazVMZWxKQ2MwSlNPVWszWVZoWk1WVXlOelZCUnpGeWFreHBaVGRqUVdwVkNtTXhXVUkxZEdKd1ZFRlhRbmM0UXpGQ2QwUnlVMUo2VmtzemVFa3pXbTlXVlU1eU1XZG5hRGN5WVZFdmNXTlhOR1J2ZFVNelFXOTZWa296YjI5RVdXMEtTR2h5Y0VrcldFRjRjekprYm0xcmJuUjJUelpPVUdkdU0ybHNZVmt2VWxZM0t6QkxiVWd3SzFoTWJIWlJXSGhXYVRWS09VTnFSRFFyZW1GdlJUVk1Od294TTBKVlNXUnNjV0psT0ZrMFJXWlpSSFJpVFRSeWJVSlFkV0ZqUkhkbVRtZGFSVWxzYTJoWldrVnJiVWhGVm5nNVdFaHJjbmxCT0dOdmJUVTBPSGx0Q25OWEt6TndVVUpPVEZaM2JHNVZVM2RGTlRoWGRsRkliRm92TkZWRlVFTjNSbUZvUndvdExTMHRMVVZPUkNCRFJWSlVTVVpKUTBGVVJTMHRMUzB0Q2c9PQogICAgc2VydmVyOiBodHRwczovLzA0ODk3ODczLTIzNDItNDdmMS05MmQwLTFhNDEzMzM5NzcwNy5hcGkuazhzLmZyLXBhci5zY3cuY2xvdWQ6NjQ0Mwpjb250ZXh0czoKLSBuYW1lOiBhZG1pbkBrOHMtYWNsLWJhc2ljCiAgY29udGV4dDoKICAgIGNsdXN0ZXI6ICJrOHMtYWNsLWJhc2ljIgogICAgdXNlcjogazhzLWFjbC1iYXNpYy1hZG1pbgpjdXJyZW50LWNvbnRleHQ6IGFkbWluQGs4cy1hY2wtYmFzaWMKa2luZDogQ29uZmlnCnByZWZlcmVuY2VzOiB7fQp1c2VyczoKLSBuYW1lOiBrOHMtYWNsLWJhc2ljLWFkbWluCiAgdXNlcjoKICAgIHRva2VuOiBYbzZneE9ZNHdDRjBuZUJLTk1VQzFhcWlwbDZTN0tiSk1xcnJ6d2lMTUdvZ2xMVzZBNEhKZ2NNRw==","content_type":"application/octet-stream","name":"kubeconfig"}' + headers: + Content-Length: + - "2598" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb816ca1-a3c0-4903-a874-5a5c2a3649b1 + status: 200 OK + code: 200 + duration: 717.27805ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707?with_additional_resources=true + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1488 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:25:02.136097Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1488" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe5271f8-d6c0-4311-83d1-1f4a404693d2 + status: 200 OK + code: 200 + duration: 868.56925ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1488 + uncompressed: false + body: '{"acl_available":true,"admission_plugins":[],"apiserver_cert_sans":[],"auto_upgrade":{"enabled":false,"maintenance_window":{"day":"any","start_hour":0}},"autoscaler_config":{"balance_similar_node_groups":false,"estimator":"binpacking","expander":"random","expendable_pods_priority_cutoff":0,"ignore_daemonsets_utilization":false,"max_graceful_termination_sec":0,"scale_down_delay_after_add":"10m","scale_down_disabled":false,"scale_down_unneeded_time":"10m","scale_down_utilization_threshold":0.5},"cluster_url":"https://04897873-2342-47f1-92d0-1a4133397707.api.k8s.fr-par.scw.cloud:6443","cni":"cilium","commitment_ends_at":"2025-04-16T12:24:06.361426Z","created_at":"2025-04-16T12:24:06.361414Z","description":"","dns_wildcard":"*.04897873-2342-47f1-92d0-1a4133397707.nodes.k8s.fr-par.scw.cloud","feature_gates":[],"iam_nodes_group_id":"85bdcf54-481a-4370-8567-fe7bd33c7aa9","id":"04897873-2342-47f1-92d0-1a4133397707","name":"k8s-acl-basic","open_id_connect_config":{"client_id":"","groups_claim":[],"groups_prefix":"","issuer_url":"","required_claim":[],"username_claim":"","username_prefix":""},"organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_id":"442c578b-9d85-4be7-992d-2c537212bed2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","sbs_csi_enabled":true,"status":"deleting","tags":[],"type":"kapsule","updated_at":"2025-04-16T12:25:02.136097Z","upgrade_available":false,"version":"1.32.3"}' + headers: + Content-Length: + - "1488" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1c8d4dd0-5d26-4dd7-aed6-1a15b28de761 + status: 200 OK + code: 200 + duration: 812.111623ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128 + uncompressed: false + body: '{"message":"resource is not found","resource":"cluster","resource_id":"04897873-2342-47f1-92d0-1a4133397707","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f0e4e41-4655-4e84-8634-eff0dd4d2921 + status: 404 Not Found + code: 404 + duration: 621.94834ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/442c578b-9d85-4be7-992d-2c537212bed2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"private_network","resource_id":"442c578b-9d85-4be7-992d-2c537212bed2","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 449bcf4d-c61c-4871-ae98-1471b9423f09 + status: 404 Not Found + code: 404 + duration: 724.33612ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/k8s/v1/regions/fr-par/clusters/04897873-2342-47f1-92d0-1a4133397707 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128 + uncompressed: false + body: '{"message":"resource is not found","resource":"cluster","resource_id":"04897873-2342-47f1-92d0-1a4133397707","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Apr 2025 12:25:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a83a603e-c37e-4cb5-97e2-a2ef99b21aba + status: 404 Not Found + code: 404 + duration: 761.481645ms