2015-04-19 22:21:35 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
2017-09-13 01:48:52 +00:00
|
|
|
page_title: "Userpass - Auth Methods"
|
2015-04-19 22:21:35 +00:00
|
|
|
sidebar_current: "docs-auth-userpass"
|
|
|
|
description: |-
|
2017-09-13 01:48:52 +00:00
|
|
|
The "userpass" auth method allows users to authenticate with Vault using a username and password.
|
2015-04-19 22:21:35 +00:00
|
|
|
---
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
# Userpass Auth Method
|
2015-04-19 22:21:35 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
The `userpass` auth method allows users to authenticate with Vault using
|
2015-04-19 22:21:35 +00:00
|
|
|
a username and password combination.
|
|
|
|
|
|
|
|
The username/password combinations are configured directly to the auth
|
2017-09-13 01:48:52 +00:00
|
|
|
method using the `users/` path. This method cannot read usernames and
|
2015-04-19 22:21:35 +00:00
|
|
|
passwords from an external source.
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
The method lowercases all submitted usernames, e.g. `Mary` and `mary` are the
|
2017-06-08 13:41:01 +00:00
|
|
|
same entry.
|
|
|
|
|
2015-04-19 22:21:35 +00:00
|
|
|
## Authentication
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
### Via the CLI
|
2015-04-19 22:21:35 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
```text
|
|
|
|
$ vault login -method=userpass \
|
2015-10-12 16:10:22 +00:00
|
|
|
username=foo \
|
|
|
|
password=bar
|
2015-04-19 22:21:35 +00:00
|
|
|
```
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
### Via the API
|
2015-05-08 09:45:21 +00:00
|
|
|
|
2015-05-08 15:49:58 +00:00
|
|
|
```shell
|
2017-09-13 01:48:52 +00:00
|
|
|
$ curl \
|
|
|
|
--request POST \
|
|
|
|
--data '{"password": "foo"}' \
|
2018-03-23 15:41:51 +00:00
|
|
|
http://127.0.0.1:8200/v1/auth/userpass/login/mitchellh
|
2015-05-08 09:45:21 +00:00
|
|
|
```
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
The response will contain the token at `auth.client_token`:
|
2015-05-08 15:49:58 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
```json
|
2015-05-08 15:49:58 +00:00
|
|
|
{
|
2015-10-12 16:10:22 +00:00
|
|
|
"lease_id": "",
|
|
|
|
"renewable": false,
|
|
|
|
"lease_duration": 0,
|
|
|
|
"data": null,
|
|
|
|
"auth": {
|
|
|
|
"client_token": "c4f280f6-fdb2-18eb-89d3-589e2e834cdb",
|
|
|
|
"policies": [
|
2016-08-08 21:32:37 +00:00
|
|
|
"admins"
|
2015-05-08 15:49:58 +00:00
|
|
|
],
|
2015-10-12 16:10:22 +00:00
|
|
|
"metadata": {
|
|
|
|
"username": "mitchellh"
|
2015-05-08 15:49:58 +00:00
|
|
|
},
|
2015-10-12 16:10:22 +00:00
|
|
|
"lease_duration": 0,
|
|
|
|
"renewable": false
|
2015-05-08 15:49:58 +00:00
|
|
|
}
|
|
|
|
}
|
2015-05-08 09:45:21 +00:00
|
|
|
```
|
2015-04-19 22:21:35 +00:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
Auth methods must be configured in advance before users or machines can
|
|
|
|
authenticate. These steps are usually completed by an operator or configuration
|
|
|
|
management tool.
|
2015-05-07 17:41:23 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
1. Enable the userpass auth method:
|
2015-05-07 17:41:23 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
```text
|
|
|
|
$ vault auth enable userpass
|
|
|
|
```
|
2015-05-07 17:41:23 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
1. Configure it with users that are allowed to authenticate:
|
2015-04-19 22:21:35 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
```text
|
|
|
|
$ vault write auth/userpass/users/mitchellh \
|
|
|
|
password=foo \
|
|
|
|
policies=admins
|
|
|
|
```
|
2015-04-19 22:21:35 +00:00
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
This creates a new user "mitchellh" with the password "foo" that will be
|
|
|
|
associated with the "admins" policy. This is the only configuration
|
|
|
|
necessary.
|
2016-03-16 02:19:31 +00:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
2017-09-13 01:48:52 +00:00
|
|
|
The Userpass auth method has a full HTTP API. Please see the
|
|
|
|
[Userpass auth method API](/api/auth/userpass/index.html) for more
|
2017-08-08 16:28:17 +00:00
|
|
|
details.
|