Configure Role-Based Manual Approval
Implement role-based manual deployment approval in Armory Continuous Deployment-as-a-Service.
Before you begin
- You have read Role-Based Manual Approval to learn how role-based manual approvals can enforce your SDLC’s approval processes in Armory CD-as-a-Service.
Configure role-based manual approval
In your deployment manifest, add a requiresRole
field to your manual approval.
...
pause:
untilApproved: true
requiresRoles: []
...
requiresRoles
: list of RBAC roles
For example, if you want only users with an “Approver”, “InfoSec”, or “Release Manager” role to be able to issue a manual approval, you would add those roles to the requiresRole
list:
...
pause:
untilApproved: true
requiresRoles: ["Approver", "InfoSec", "Release Manager"]
...
What’s next
Feedback
Was this page helpful?
Thank you for letting us know!
Sorry to hear that. Please tell us how we can improve.
Last modified December 27, 2022: (4e05ffae)