services.rundeck.aclPolicies
NixOS option
ACL policies for Rundeck, where the attribute name is the filename and the value is the policy content
type: attribute set of stringDefault
{ }Example
declared in: nixos/modules/services/web-apps/rundeck.nixView source on NixOS/nixpkgs →{
"admin.aclpolicy" = ''
description: Admin access for administrators
context:
project: '.*'
for:
resource:
- allow: '*'
job:
- allow: '*'
node:
- allow: '*'
by:
group: admin
---
description: Admin access in application scope
context:
application: 'rundeck'
for:
resource:
- allow: '*'
project:
- allow: '*'
by:
group: admin
'';
}