Lines Matching refs:userpass

7   groups.  For the purpose of the demonstration, userpass auth method will be
90 # Manage userpass auth methods
91 path "auth/userpass/*" {
138 leverage the userpass auth method. The challenge exercise walks you through
157 -> For the simplicity of this guide, you are going to work with the `userpass`
217 1. Enable the `userpass` auth method.
220 $ vault auth enable userpass
223 1. Create a new user in userpass:
230 $ vault write auth/userpass/users/bob password="training" policies="test"
233 1. Create another user in userpass:
240 $ vault write auth/userpass/users/bsmith password="training" policies="team-qa"
243 1. Execute the following command to discover the mount accessor for the userpass auth method:
250 userpass/ userpass auth_userpass_70eba76b ...
253 In the output, locate the **Accessor** value for `userpass`.
255 Run the following command to store the userpass accessor value in a file named, `accessor.txt`.
258 $ vault auth list -format=json | jq -r '.["userpass/"].accessor' > accessor.txt
386 1. Enable the `userpass` auth method.
391 --data '{"type": "userpass"}' \
392 http://127.0.0.1:8200/v1/sys/auth/userpass
395 1. Create a new user in userpass:
405 http://127.0.0.1:8200/v1/auth/userpass/users/bob
408 1. Create another user in userpass:
418 http://127.0.0.1:8200/v1/auth/userpass/users/bsmith
421 1. Execute the following command to discover the mount accessor for the userpass
429 "userpass/": {
436 -> Make a note of the userpass accessor value (**`auth_userpass_XXXXX`**).
471 In the request body, you need to pass the userpass name as `name`, the userpass
526 "mount_type": "userpass",
532 "mount_type": "userpass",
571 $ vault write auth/userpass/users/bob password="training" policies="test"
579 $ vault write auth/userpass/users/bsmith password="training" policies="team-qa"
595 **`userpass/ (userpass)`** from the **Auth Backend** drop-down list.
606 1. Enter **`bsmith`** in the **Name** field and select **`userpass/ (userpass)`** from the
619 $ vault login -method=userpass username=bob password=training
682 http://127.0.0.1:8200/v1/auth/userpass/login/bob
997 "userpass/": {