Skip to main content
Version: v3.3 print this page

Roles

Role-Based Access Control (RBAC) in Amorphic is a feature that helps system administrators manage user access to sensitive information and reduce the risk of data breaches.

Below is the sample resource definition file for Role:

{
"rRole": {
"Type": "Role",
"Properties": {
"RoleName": "cicd_role",
"RoleDescription": "Role created through CICD Module",
"RoleManagers": [
"aqa1"
],
"RolePermissions": [
"datasets.fullaccess",
"domains.fullaccess"
],
"UsersAttached": [
"jonhdoe",
"sarah",
"mathew"
]
}
}
}