Skip to content

Commit

Permalink
added the missing nonce and type fields (#3694)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajanadar authored and jefferai committed Dec 17, 2017
1 parent d4f17b8 commit bb667bf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions website/source/api/system/seal-status.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,28 @@ The "t" parameter is the threshold, and "n" is the number of shares.

```json
{
"type": "shamir",
"sealed": true,
"t": 3,
"n": 5,
"progress": 2,
"version": "0.6.2"
"nonce": "",
"version": "0.9.0"
}
```

Sample response when Vault is unsealed.

```json
{
"type": "shamir",
"sealed": false,
"t": 3,
"n": 5,
"progress": 0,
"version": "0.6.2",
"version": "0.9.0",
"cluster_name": "vault-cluster-d6ec3c7f",
"cluster_id": "3e8b3fec-3749-e056-ba41-b62a63b997e8"
"cluster_id": "3e8b3fec-3749-e056-ba41-b62a63b997e8",
"nonce": "ef05d55d-4d2c-c594-a5e8-55bc88604c24"
}
```

0 comments on commit bb667bf

Please sign in to comment.