/sys/policies/
The /sys/policies endpoints are used to manage ACL, RGP, and EGP policies in Vault.
RGPs and EGPs are Vault Enterprise upgrade features that are not available in Vault Open Source or basic Vault Enterprise installations.
List ACL policies
This endpoint lists all configured ACL policies.
LIST
/sys/policies/acl
Sample request
$ curl \
-X LIST --header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/aclSample response
{
"keys": ["root", "my-policy"]
}Read ACL policy
This endpoint retrieves information about the named ACL policy.
GET
/sys/policies/acl/:name
Parameters
name(string: <required>)– Specifies the name of the policy to retrieve. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/acl/my-policySample response
{
"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.
POST
/sys/policies/acl/:name
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
{
"policy": "path \"secret/foo\" {..."
}Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
http://127.0.0.1:8200/v1/sys/policies/acl/my-policyDelete 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.)
DELETE
/sys/policies/acl/:name
Parameters
name(string: <required>)– Specifies the name of the policy to delete. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
http://127.0.0.1:8200/v1/sys/policies/acl/my-policyList RGP policies
This endpoint lists all configured RGP policies.
LIST
/sys/policies/rgp
Sample request
$ curl \
-X LIST --header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/rgpSample response
{
"keys": ["webapp", "database"]
}Read RGP policy
This endpoint retrieves information about the named RGP policy.
GET
/sys/policies/rgp/:name
Parameters
name(string: <required>)– Specifies the name of the policy to retrieve. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/rgp/webappSample response
{
"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.
POST
/sys/policies/rgp/:name
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 ofadvisory,soft-mandatory, orhard-mandatory.
Sample payload
{
"policy": "rule main = {...",
"enforcement_level": "soft-mandatory"
}Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
http://127.0.0.1:8200/v1/sys/policies/rgp/webappDelete 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.)
DELETE
/sys/policies/rgp/:name
Parameters
name(string: <required>)– Specifies the name of the policy to delete. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
http://127.0.0.1:8200/v1/sys/policies/rgp/webappList EGP policies
This endpoint lists all configured EGP policies. Since EGP policies act on a path, this endpoint returns two identifiers:
keyscontains a mapping of names to associated paths in a format thatvault listunderstandsname_path_mapcontains an object mapping names to paths and glob status in a more machine-friendly format
LIST
/sys/policies/egp
Sample request
$ curl \
-X LIST --header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/egpSample response
{
"keys": ["breakglass"]
}Read EGP policy
This endpoint retrieves information about the named EGP policy.
GET
/sys/policies/egp/:name
Parameters
name(string: <required>)– Specifies the name of the policy to retrieve. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
http://127.0.0.1:8200/v1/sys/policies/egp/breakglassSample response
{
"enforcement_level": "soft-mandatory",
"name": "breakglass",
"paths": ["*"],
"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.
POST
/sys/policies/egp/:name
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 ofadvisory,soft-mandatory, orhard-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
{
"policy": "rule main = {...",
"paths": ["*", "secret/*", "transit/keys/*"],
"enforcement_level": "soft-mandatory"
}Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request POST \
--data @payload.json \
http://127.0.0.1:8200/v1/sys/policies/egp/breakglassDelete EGP policy
This endpoint deletes the EGP policy with the given name from all paths on which it was configured.
DELETE
/sys/policies/egp/:name
Parameters
name(string: <required>)– Specifies the name of the policy to delete. This is specified as part of the request URL.
Sample request
$ curl \
--header "X-Vault-Token: ..." \
--request DELETE \
http://127.0.0.1:8200/v1/sys/policies/egp/breakglassLast updated