--- layout: "docs" page_title: "Okta MFA - MFA Support - Vault Enterprise" sidebar_current: "docs-vault-enterprise-mfa-okta" description: |- Vault Enterprise supports Okta MFA type. --- # Okta MFA This page demonstrates the Okta MFA on ACL'd paths of Vault. ## Configuration 1. Enable the appropriate auth method: ```text $ vault auth enable userpass ``` 1. Fetch the mount accessor for the enabled auth method: ```text $ vault auth list -detailed ``` The response will look like: ```text Path Type Accessor Plugin Default TTL Max TTL Replication Description ---- ---- -------- ------ ----------- ------- ----------- ----------- token/ token auth_token_289703e9 n/a system system replicated token based credentials userpass/ userpass auth_userpass_54b8e339 n/a system system replicated n/a ``` 1. Configure Okta MFA: ```text $ vault write sys/mfa/method/okta/my_okta \ mount_accessor=auth_userpass_54b8e339 \ org_name="dev-262775" \ api_token="0071u8PrReNkzmATGJAP2oDyIXwwveqx9vIOEyCZDC" ``` 1. Create a policy that gives access to secret through the MFA method created above: ```text $ vault policy write okta-policy -<