26 lines
607 B
Terraform
26 lines
607 B
Terraform
|
|
output "realm_id" {
|
||
|
|
value = keycloak_realm.hexor.id
|
||
|
|
}
|
||
|
|
|
||
|
|
output "google_idp_alias" {
|
||
|
|
value = keycloak_oidc_google_identity_provider.google.alias
|
||
|
|
}
|
||
|
|
|
||
|
|
output "rsauth2_proxy_client_id" {
|
||
|
|
value = keycloak_openid_client.rsauth2_proxy.client_id
|
||
|
|
}
|
||
|
|
|
||
|
|
output "rsauth2_proxy_client_secret" {
|
||
|
|
value = keycloak_openid_client.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
|
||
|
|
}
|