Hide Vault OIDC from main login dropdown

OIDC popup flow hangs due to Authentik X-Frame-Options.
Keep OIDC accessible via the "Other" tab instead.
This commit is contained in:
Viktor Barzin 2026-03-14 14:12:16 +00:00
parent 1dec7e6bea
commit 27fa8ea18f

View file

@ -98,7 +98,7 @@ resource "vault_jwt_auth_backend" "oidc" {
oidc_client_secret = var.vault_authentik_client_secret
default_role = "default"
tune {
listing_visibility = "unauth"
listing_visibility = "hidden"
}
depends_on = [helm_release.vault]
}