2023-12-19 22:19:09 +00:00
|
|
|
module "werts_pleroma_oidc_client" {
|
|
|
|
source = "./oidc-client"
|
|
|
|
|
|
|
|
realm_id = keycloak_realm.werts.id
|
|
|
|
client_id = "pleroma"
|
|
|
|
keepers = { epoch = 1 }
|
|
|
|
redirect_uris = ["http://toots.werts.us/oauth/keycloak/callback"]
|
|
|
|
|
2023-12-20 22:40:16 +00:00
|
|
|
kubernetes_secret_name = "toots-oidc"
|
|
|
|
kubernetes_secret_namespace = "toots-werts"
|
2023-12-19 22:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
output "pleroma_client_id" {
|
|
|
|
value = module.werts_pleroma_oidc_client
|
|
|
|
sensitive = true
|
|
|
|
}
|