2017-11-14 11:13:11 +00:00
---
2020-01-18 00:18:09 +00:00
layout: api
page_title: /sys/policies/ - HTTP API
description: >-
The `/sys/policies/` endpoints are used to manage ACL, RGP, and EGP policies
in Vault.
2017-11-14 11:13:11 +00:00
---
# `/sys/policies/`
The `/sys/policies` endpoints are used to manage ACL, RGP, and EGP policies in Vault.
2017-12-04 17:10:26 +00:00
~> **NOTE**: This endpoint is only available in Vault version 0.9+. Please also note that RGPs and EGPs are Vault Enterprise Premium features and the associated endpoints are not available in Vault Open Source or Vault Enterprise Pro.
2017-11-14 11:13:11 +00:00
## List ACL Policies
This endpoint lists all configured ACL policies.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------ |
| `LIST` | `/sys/policies/acl` |
2017-11-14 11:13:11 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
-X LIST --header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/acl
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
"keys": ["root", "my-policy"]
}
```
## Read ACL Policy
This endpoint retrieves information about the named ACL policy.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `GET` | `/sys/policies/acl/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to retrieve.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/acl/my-policy
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
"name": "deploy",
"policy": "path \"secret/foo\" {..."
}
```
## Create/Update ACL Policy
This endpoint adds a new or updates an existing ACL policy. Once a policy is
updated, it takes effect immediately to all associated users.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `PUT` | `/sys/policies/acl/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to create.
This is specified as part of the request URL.
- `policy` `(string: <required>)` - Specifies the policy document. This can be
base64-encoded to avoid string escaping.
### Sample Payload
```json
{
"policy": "path \"secret/foo\" {..."
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request PUT \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/acl/my-policy
2017-11-14 11:13:11 +00:00
```
## Delete ACL Policy
This endpoint deletes the ACL policy with the given name. This will immediately
affect all users associated with this policy. (A deleted policy set on a token
acts as an empty policy.)
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :------------------------ |
| `DELETE` | `/sys/policies/acl/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to delete.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/acl/my-policy
2017-11-14 11:13:11 +00:00
```
## List RGP Policies
This endpoint lists all configured RGP policies.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------ |
| `LIST` | `/sys/policies/rgp` |
2017-11-14 11:13:11 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
-X LIST --header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/rgp
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
"keys": ["webapp", "database"]
}
```
## Read RGP Policy
This endpoint retrieves information about the named RGP policy.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `GET` | `/sys/policies/rgp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to retrieve.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/rgp/webapp
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
"name": "webapp",
"policy": "rule main = {...",
"enforcement_level": "soft-mandatory"
}
```
## Create/Update RGP Policy
This endpoint adds a new or updates an existing RGP policy. Once a policy is
updated, it takes effect immediately to all associated users.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `PUT` | `/sys/policies/rgp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to create.
This is specified as part of the request URL.
- `policy` `(string: <required>)` - Specifies the policy document. This can be
base64-encoded to avoid string escaping.
- `enforcement_level` `(string: <required>)` - Specifies the enforcement level
to use. This must be one of `advisory`, `soft-mandatory`, or
`hard-mandatory`.
### Sample Payload
```json
{
"policy": "rule main = {...",
"enforcement_level": "soft-mandatory"
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request PUT \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/rgp/webapp
2017-11-14 11:13:11 +00:00
```
## Delete RGP Policy
This endpoint deletes the RGP policy with the given name. This will immediately
affect all users associated with this policy. (A deleted policy set on a token
acts as an empty policy.)
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :------------------------ |
| `DELETE` | `/sys/policies/rgp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to delete.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/rgp/webapp
2017-11-14 11:13:11 +00:00
```
## List EGP Policies
This endpoint lists all configured EGP policies. Since EGP policies act on a
path, this endpoint returns two identifiers:
2020-01-18 00:18:09 +00:00
- `keys` contains a mapping of names to associated paths in a format that
`vault list` understands
- `name_path_map` contains an object mapping names to paths and glob status in
a more machine-friendly format
2017-11-14 11:13:11 +00:00
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------ |
| `LIST` | `/sys/policies/egp` |
2017-11-14 11:13:11 +00:00
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
-X LIST --header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/egp
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
2020-01-18 00:18:09 +00:00
"keys": ["breakglass"]
2017-11-14 11:13:11 +00:00
}
```
## Read EGP Policy
This endpoint retrieves information about the named EGP policy.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `GET` | `/sys/policies/egp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to retrieve.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/egp/breakglass
2017-11-14 11:13:11 +00:00
```
### Sample Response
```json
{
"enforcement_level": "soft-mandatory",
"name": "breakglass",
2020-01-18 00:18:09 +00:00
"paths": ["*"],
2017-11-14 11:13:11 +00:00
"policy": "rule main = {..."
}
```
## Create/Update EGP Policy
This endpoint adds a new or updates an existing EGP policy. Once a policy is
updated, it takes effect immediately to all associated users.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :----- | :------------------------ |
| `PUT` | `/sys/policies/egp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to create.
This is specified as part of the request URL.
- `policy` `(string: <required>)` - Specifies the policy document. This can be
base64-encoded to avoid string escaping.
- `enforcement_level` `(string: <required>)` - Specifies the enforcement level
to use. This must be one of `advisory`, `soft-mandatory`, or
`hard-mandatory`.
- `paths` `(string or array: required)` - Specifies the paths on which this EGP
should be applied, either as a comma-separated list or an array. Glob
characters can denote suffixes, e.g. `secret/*`; a path of `*` will affect
all authenticated and login requests.
### Sample Payload
```json
{
"policy": "rule main = {...",
2020-01-18 00:18:09 +00:00
"paths": ["*", "secret/*", "transit/keys/*"],
2017-11-14 11:13:11 +00:00
"enforcement_level": "soft-mandatory"
}
```
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request PUT \
--data @payload.json \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/egp/breakglass
2017-11-14 11:13:11 +00:00
```
## Delete EGP Policy
This endpoint deletes the EGP policy with the given name from all paths on which it was configured.
2020-01-18 00:18:09 +00:00
| Method | Path |
| :------- | :------------------------ |
| `DELETE` | `/sys/policies/egp/:name` |
2017-11-14 11:13:11 +00:00
### Parameters
- `name` `(string: <required>)` – Specifies the name of the policy to delete.
This is specified as part of the request URL.
### Sample Request
2020-05-21 17:18:17 +00:00
```shell-session
2017-11-14 11:13:11 +00:00
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
2018-03-23 15:41:51 +00:00
http://127.0.0.1:8200/v1/sys/policies/egp/breakglass
2017-11-14 11:13:11 +00:00
```