Skip to content

Commit

Permalink
secrets/openldap: add creds/ endpoint to API docs (hashicorp#19973)
Browse files Browse the repository at this point in the history
  • Loading branch information
fairclothjm committed Apr 11, 2023
1 parent ee40ffc commit 5a4a763
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions website/content/api-docs/secret/ldap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,35 @@ The username template cannot use this function.
`utf16le` - Encodes the provided value into UTF16-LE.<br />
**Example:** `{{.FieldName | utf16le}}`

## Dynamic Role Passwords

The `creds` endpoint offers the credential information for a given dynamic role.

| Method | Path |
| :----- | :--------------------------------- |
| `GET` | `/ldap/creds/:role_name` |

#### Sample Get Request

```shell-session
$ curl \
--header "X-Vault-Token: ..." \
--request GET \
http://127.0.0.1:8200/v1/ldap/creds/dynamic-role
```

#### Sample Get Response

```json
{
"distinguished_names": [
"cn=v_token-dispname_testrole_jmZMnjS42a_1680580467,ou=users,dc=hashicorp,dc=com"
],
"password": "OWexB3OzYYLFiotWxUS2EheGpriwR20fa2yA7JGTsnBREcxyqpwf73htofMihxcC",
"username": "v_token-dispname_testrole_jmZMnjS42a_1680580467"
}
```

## Library Set Management

The `library` endpoint configures the sets of service accounts that Vault will offer for check-out.
Expand Down

0 comments on commit 5a4a763

Please sign in to comment.