From 83f8b7bdf62c4c6ba9f18a4faa6dfa76d85b3726 Mon Sep 17 00:00:00 2001 From: Casey Brooks Date: Fri, 27 Feb 2026 14:57:16 +0000 Subject: [PATCH] feat(system): upgrade argo cd admin creds --- stacks/system/main.tf | 9 +++++++-- stacks/system/variables.tf | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/stacks/system/main.tf b/stacks/system/main.tf index 0dfbe845..404d13aa 100644 --- a/stacks/system/main.tf +++ b/stacks/system/main.tf @@ -77,9 +77,14 @@ resource "helm_release" "argo_cd" { } } configs = { + cm = { + admin = { + enabled = true + } + } secret = { - argocdServerAdminPassword = "$2a$10$H1a30nMr9v2QE2nkyz0BoOD2J0I6FQFMtHS0csEg12RBWzfRuuoE6" - argocdServerAdminPasswordMtime = "2026-02-24T00:00:00Z" + argocdServerAdminPassword = "$2a$10$hR1GwTdUGuvKqOZBrM2ctu8eAwE70ItpOXOHgslxBqG6UHIRhRrzK" + argocdServerAdminPasswordMtime = "2026-02-27T14:54:31Z" } } }) diff --git a/stacks/system/variables.tf b/stacks/system/variables.tf index dbf108b4..5e308cd6 100644 --- a/stacks/system/variables.tf +++ b/stacks/system/variables.tf @@ -13,5 +13,5 @@ variable "istio_chart_version" { variable "argocd_chart_version" { type = string description = "Argo CD chart version" - default = "5.33.0" + default = "9.4.3" }