--
You received this message because you are subscribed to the Google Groups "rundeck-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rundeck-discu...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
description: Project level access control. Applies to resources within a specific project.
context:
project: 'X' # projects
for:
resource:
- allow: [read] # allow read/create resources
adhoc:
- allow: [] # allow running/killing adhoc jobs
job:
- allow: [read,run,kill] # allow create/read/write/delete/run/kill of all jobs
node:
- allow: [read,run] # allow read/run for nodes
by:
username: [nihar]
---
description: Application level access control, applies to creating/deleting projects, admin of user profiles, viewing projects and reading system information.
context:
application: 'rundeck'
for:
resource:
- equals:
kind: project
allow: [read] # allow create of projects
- equals:
kind: system
allow: [read] # allow read of system info
- equals:
kind: user
allow: [] # allow modify user profiles
project:
- match:
name: 'X'
allow: [read] # allow view/admin of all projects
by:
username: [nihar]