Granting or Revoking Roles
Granting a Role
If you want to manage roles for a single user, you can use the grant role
command. That way, you can add new roles to a user for an existing project.
Log in to the Jupyter console as a user with one of these roles: AIZEN_ADMIN or PROJECT_ADMIN.
Create or open a notebook.
If you are granting a project-level role, you will need to execute the
set project
command to set the current project:Execute the
grant role
command to grant the required roles to the user.Example:
grant role PROJECT_EXECUTOR to user1
Revoking a Role
If you want to remove any roles that were granted to a user, follow these steps:
Log in to the Jupyter console as a user with one of these roles: AIZEN_ADMIN or PROJECT_ADMIN.
Create or open a notebook.
If you are revoking a project-level role, you will need to execute the
set project
command to set the current project:Execute the
revoke role
command to revoke roles from the user:Example:
revoke role PROJECT_EXECUTOR from user1
Last updated