open-vault/website/content/docs/auth/index.mdx

45 lines
1.5 KiB
Plaintext
Raw Normal View History

2015-04-18 00:41:56 +00:00
---
layout: docs
page_title: Auth Methods
description: Auth methods are mountable methods that perform authentication for Vault.
2015-04-18 00:41:56 +00:00
---
# Auth Methods
2015-04-18 00:41:56 +00:00
Auth methods are the components in Vault that perform authentication and are
responsible for assigning identity and a set of policies to a user.
2015-04-18 00:41:56 +00:00
Having multiple auth methods enables you to use an auth method that makes the
most sense for your use case of Vault and your organization.
2015-04-18 00:41:56 +00:00
For example, on developer machines, the [GitHub auth method](/docs/auth/github)
is easiest to use. But for servers the [AppRole](/docs/auth/approle)
method is the recommended choice.
2015-04-18 00:41:56 +00:00
To learn more about authentication, see the
[authentication concepts page](/docs/concepts/auth).
2015-04-18 00:41:56 +00:00
## Enabling/Disabling Auth Methods
2015-04-18 00:41:56 +00:00
Auth methods can be enabled/disabled using the CLI or the API.
2015-04-18 00:41:56 +00:00
```shell-session
$ vault auth enable userpass
```
When enabled, auth methods are similar to [secrets engines](/docs/secrets):
2015-04-18 00:41:56 +00:00
they are mounted within the Vault mount table and can be accessed
and configured using the standard read/write API. All auth methods are mounted underneath the `auth/` prefix.
By default, auth methods are mounted to `auth/<type>`. For example, if you
enable "github", then you can interact with it at `auth/github`. However, this
path is customizable, allowing users with advanced use cases to mount a single
auth method multiple times.
2015-04-18 00:41:56 +00:00
```shell-session
$ vault auth enable -path=my-login userpass
```
2015-04-18 00:41:56 +00:00
When an auth method is disabled, all users authenticated via that method are
automatically logged out.