Fix config/sts docs (#5839)

This commit is contained in:
Martins Sipenko 2018-11-30 21:08:47 +02:00 committed by Jim Kalafut
parent a82ff1f92e
commit 3c0d63169c
1 changed files with 14 additions and 10 deletions

View File

@ -361,15 +361,14 @@ $ curl \
Returns the previously configured STS role.
| Method | Path | Produces |
| :------- | :--------------------------- | :--------------------- |
| `GET` | `/auth/aws/config/sts/:account_id` | `200 application/json` |
| Method | Path | Produces |
| :------- | :--------------------------------- | :--------------------- |
| `GET` | `/auth/aws/config/sts/:account_id` | `200 application/json` |
### Parameters
- `account_id` `(string: <required>)` - AWS account ID to be associated with
STS role. If set, Vault will use assumed credentials to verify any login
attempts from EC2 instances in this account.
- `account_id` `(string: <required>)` - AWS account ID that has been
previously associated with STS role.
### Sample Request
@ -423,9 +422,14 @@ $ curl \
Deletes a previously configured AWS account/STS role association.
| Method | Path | Produces |
| :------- | :--------------------------- | :--------------------- |
| `DELETE` | `/auth/aws/config/sts` | `204 (empty body)` |
| Method | Path | Produces |
| :------- | :--------------------------------- | :------------------|
| `DELETE` | `/auth/aws/config/sts/:account_id` | `204 (empty body)` |
### Parameters
- `account_id` `(string: <required>)` - AWS account ID that has been
previously associated with STS role.
### Sample Request
@ -433,7 +437,7 @@ Deletes a previously configured AWS account/STS role association.
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
http://127.0.0.1:8200/v1/auth/aws/config/sts
http://127.0.0.1:8200/v1/auth/aws/config/sts/111122223333
```
## Configure Identity Whitelist Tidy Operation