69 lines
1.4 KiB
HCL
69 lines
1.4 KiB
HCL
# Read system health check
|
|
path "sys/health"
|
|
{
|
|
capabilities = ["read", "sudo"]
|
|
}
|
|
|
|
# Create and manage ACL policies broadly across Vault
|
|
|
|
# Display the Policies tab in UI
|
|
path "sys/policies" {
|
|
capabilities = ["read", "list"]
|
|
}
|
|
|
|
# List existing policies
|
|
path "sys/policies/acl"
|
|
{
|
|
capabilities = ["read", "list"]
|
|
}
|
|
|
|
# Create and manage ACL policies
|
|
path "sys/policies/acl/*"
|
|
{
|
|
capabilities = ["create", "read", "update", "delete", "list"]
|
|
}
|
|
|
|
# Enable and manage authentication methods broadly across Vault
|
|
|
|
# Manage auth methods broadly across Vault
|
|
path "auth/*"
|
|
{
|
|
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
|
|
}
|
|
|
|
# Create, update, and delete auth methods
|
|
path "sys/auth/*"
|
|
{
|
|
capabilities = ["create", "update", "read", "delete", "list", "sudo"]
|
|
}
|
|
|
|
# List auth methods
|
|
path "sys/auth"
|
|
{
|
|
capabilities = ["read", "list"]
|
|
}
|
|
|
|
# Enable and manage the key/value secrets engine at `secret/` path
|
|
|
|
# List, create, update, and delete key/value secrets
|
|
path "secret/*"
|
|
{
|
|
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
|
|
}
|
|
|
|
# Manage secrets engines
|
|
path "sys/mounts/*"
|
|
{
|
|
capabilities = ["create", "read", "update", "delete", "list", "sudo"]
|
|
}
|
|
|
|
# List existing secrets engines.
|
|
path "sys/mounts"
|
|
{
|
|
capabilities = ["read"]
|
|
}
|
|
|
|
# Create and manage entities and groups
|
|
path "identity/*" {
|
|
capabilities = [ "create", "read", "update", "delete", "list" ]
|
|
} |