12 lines
240 B
Terraform
12 lines
240 B
Terraform
|
output "client_id" {
|
||
|
value = resource.random_password.oidc_client_id.result
|
||
|
}
|
||
|
|
||
|
output "secret" {
|
||
|
value = resource.random_password.oidc_secret.result
|
||
|
}
|
||
|
|
||
|
output "secret_hash" {
|
||
|
value = resource.random_password.oidc_secret.bcrypt_hash
|
||
|
}
|