kube-cascade/keycloak/tf/client-mastodon.tf

16 lines
409 B
Terraform
Raw Normal View History

2023-12-19 22:19:09 +00:00
module "werts_mastodon_oidc_client" {
source = "./oidc-client"
realm_id = keycloak_realm.werts.id
client_id = "mastodon"
keepers = { epoch = 1 }
redirect_uris = ["https://mastodon.werts.us/auth/auth/openid_connect/callback"]
vault_secret_name = "k8s-ns/mastodon/werts-oidc"
}
output "mastodon_client_id" {
value = module.werts_mastodon_oidc_client
sensitive = true
}