Skip to content
This repository was archived by the owner on Mar 30, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions k8s/service-account/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ locals {
}

output "instructions" {
value = "Copy kubeconfig value into a file, which can be directly used. e.g. `kubectl --kubeconfig kubeconfig.json get pods`"
value = "Copy kubeconfig value into a file, which can be directly used. e.g. `kubectl --kubeconfig kubeconfig get pods`"
}

output "kubeconfig" {
sensitive = true
value = local.kubeconfig
value = yamlencode(local.kubeconfig)
}