We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c39271 commit e91bad5Copy full SHA for e91bad5
base-infrastructure/terraform/resources/helm-argocd.tf
@@ -17,6 +17,14 @@ resource "helm_release" "argo-cd" {
17
cm = {
18
"timeout.reconciliation" : "60s"
19
"timeout.hard.reconciliation" : "90s"
20
+ # NOTE: Additional users for readonly access - https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#create-new-user
21
+ "accounts.readonly" : "login",
22
+ "accounts.readonly.enabled" : "true"
23
+ }
24
+ rbac = {
25
+ "policy.csv" = <<-EOT
26
+ g, readonly, role:readonly
27
+ EOT
28
}
29
30
})
0 commit comments