fix: fixes encryption key for kubernetes secrets

This commit is contained in:
2025-11-07 15:13:21 -03:00
parent a926eccff5
commit 2f124b4f14
3 changed files with 6 additions and 6 deletions

View File

@@ -101,7 +101,7 @@ module "github" {
github_owner = var.github_owner
github_repositories = var.github_repositories
cluster_kubeconfig = module.kubernetes.cluster_kubeconfig
gpg_public_key_encryption = var.gpg_public_key_encryption
gpg_private_key_encryption = var.gpg_private_key_encryption
}
@@ -110,7 +110,7 @@ output "cluster_kubeconfig" {
sensitive = true
}
output "gpg_private_key_encryption" {
value = var.gpg_private_key_encryption
output "gpg_public_key_encryption" {
value = var.gpg_public_key_encryption
sensitive = true
}