Lines Matching refs:userpass

8   groups.  For the purpose of the demonstration, userpass auth method will be
94 # Manage userpass auth methods
95 path "auth/userpass/*" {
143 leverage the userpass auth method. The challenge exercise walks you through
165 -> For the simplicity of this guide, you are going to work with the `userpass`
227 1. Enable the `userpass` auth method.
230 $ vault auth enable userpass
233 1. Create a new user in userpass:
239 $ vault write auth/userpass/users/bob password="training" policies="test"
242 1. Create another user in userpass:
248 $ vault write auth/userpass/users/bsmith password="training" policies="team-qa"
251 1. Execute the following command to discover the mount accessor for the userpass auth method:
258 userpass/ userpass auth_userpass_70eba76b ...
261 In the output, locate the **Accessor** value for `userpass`.
263 Run the following command to store the userpass accessor value in a file named, `accessor.txt`.
266 $ vault auth list -format=json | jq -r '.["userpass/"].accessor' > accessor.txt
398 1. Enable the `userpass` auth method.
403 --data '{"type": "userpass"}' \
404 http://127.0.0.1:8200/v1/sys/auth/userpass
407 1. Create a new user in userpass:
416 http://127.0.0.1:8200/v1/auth/userpass/users/bob
419 1. Create another user in userpass:
428 http://127.0.0.1:8200/v1/auth/userpass/users/bsmith
431 1. Execute the following command to discover the mount accessor for the userpass
439 "userpass/": {
446 -> Make a note of the userpass accessor value (**`auth_userpass_XXXXX`**).
481 In the request body, you need to pass the userpass name as `name`, the userpass
537 "mount_type": "userpass",
543 "mount_type": "userpass",
583 $ vault write auth/userpass/users/bob password="training" policies="test"
590 $ vault write auth/userpass/users/bsmith password="training" policies="team-qa"
605 **`userpass/ (userpass)`** from the **Auth Backend** drop-down list.
616 1. Enter **`bsmith`** in the **Name** field and select **`userpass/ (userpass)`** from the
632 $ vault login -method=userpass username=bob password=training
698 http://127.0.0.1:8200/v1/auth/userpass/login/bob
1024 "userpass/": {