Fixes Kubeconfig

This commit is contained in:
2024-10-21 01:37:43 -03:00
parent 080b7e3671
commit 7e65d82e35
4 changed files with 26 additions and 20 deletions

View File

@@ -19,5 +19,5 @@ resource "github_actions_environment_secret" "cluster_kubeconfig" {
repository = data.github_repository.infra_hideyoshi_com.name
environment = var.environment_name
secret_name = "KUBECONFIG"
plaintext_value = var.cluster_kubeconfig
plaintext_value = chomp(var.cluster_kubeconfig)
}