12 lines
240 B
HCL
12 lines
240 B
HCL
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
|
|
}
|