deployed auth-proxy
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 7s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 25s

This commit is contained in:
Ultradesu
2026-05-05 15:21:27 +01:00
parent 9622b7d7bc
commit dd77d32efe
7 changed files with 105 additions and 15 deletions
+12
View File
@@ -23,3 +23,15 @@ output "rsauth2_proxy_dev_client_secret" {
value = keycloak_openid_client.rsauth2_proxy_dev.client_secret
sensitive = true
}
output "standalone_groups" {
value = [for g in keycloak_group.standalone : g.name]
}
output "app_groups" {
value = { for k, g in keycloak_group.app : k => g.name }
}
output "app_allowed_groups" {
value = local.app_allowed_groups
}