not22day

Results 1 comments of not22day

my current solution based on the short lived kubeconfig resource ``` locals { kubeconfig_yaml = stackit_ske_kubeconfig.ske.kube_config kubeconfig_hcl = yamldecode(local.kubeconfig_yaml) } provider "kubernetes" { host = local.kubeconfig_hcl.clusters.0.cluster.server cluster_ca_certificate = base64decode(local.kubeconfig_hcl.clusters.0.cluster.certificate-authority-data) client_certificate...