Finalised variables handling for ArgoCD bootstrap

This commit is contained in:
Max Pfeiffer
2026-01-09 09:08:23 +01:00
parent a1bfccdc71
commit c8d92d43b8
4 changed files with 80 additions and 31 deletions

View File

@@ -11,7 +11,7 @@ resource "kubernetes_secret_v1" "argocd_app_of_apps_git_repo" {
data = {
type = "git"
url = var.argocd_app_of_apps_git_repo_secret_url
username = "git"
password = var.argocd_app_of_apps_git_repo_secret_token
username = var.argocd_app_of_apps_git_repo_secret_username
password = var.argocd_app_of_apps_git_repo_secret_password_or_token
}
}