Skip to content

Commit

Permalink
fix: decode kubeconfig
Browse files Browse the repository at this point in the history
Signed-off-by: Mateusz Urbanek <mateusz.urbanek.98@gmail.com>
  • Loading branch information
shanduur committed Dec 4, 2024
1 parent 3a911f0 commit 441beff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/linode/modules/lke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "linode_lke_cluster" "lke" {
}

locals {
kubeconfig = yamldecode(linode_lke_cluster.lke.kubeconfig)
kubeconfig = yamldecode(base64decode(linode_lke_cluster.lke.kubeconfig))
}

locals {
Expand Down

0 comments on commit 441beff

Please sign in to comment.