added auth-proxy dashboard
This commit is contained in:
@@ -15,15 +15,6 @@ output "rsauth2_proxy_client_secret" {
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "rsauth2_proxy_dev_client_id" {
|
||||
value = keycloak_openid_client.rsauth2_proxy_dev.client_id
|
||||
}
|
||||
|
||||
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]
|
||||
}
|
||||
@@ -35,3 +26,12 @@ output "app_groups" {
|
||||
output "app_allowed_groups" {
|
||||
value = local.app_allowed_groups
|
||||
}
|
||||
|
||||
output "oauth2_app_client_ids" {
|
||||
value = { for k, c in keycloak_openid_client.oauth2_app : k => c.client_id }
|
||||
}
|
||||
|
||||
output "oauth2_app_client_secrets" {
|
||||
value = { for k, c in keycloak_openid_client.oauth2_app : k => c.client_secret }
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user