Vault web default auth method

is there a way to change the vault default auth method to oidc. I am looking to get the amount of clicks down since that is that only way I use the web interface.

Change listing_visibility to unauth using the sys/auth/<engine>/tune

ex: vault write sys/auth/ldap/tune listing_visibility="unauth"
This will make ldap the default unauthorized method on the UI.

2 Likes

A dedicated CLI command for tuning also exists, but it’s just a thin wrapper for the same HTTP request as will be made by the previous command:

vault auth tune -listing-visibility=unauth <engine>

2 Likes

perfect, Thanks so much