To add or remove users on a project, you need to be an organization owner or an Admin user of the project where you wish to make the changes.
To add a user to a project:
In the console:
- Select the project where you want to add a new user.
- Click Settings.
- Click Access.
- Click + Add.
- Add the user’s details and choose their permissions.
- Click Save.
With the CLI:
platform user:add EMAIL_ADDRESS -r PERMISSIONS_TO_GRANT
For example, if you want to add user1@example.com
to the project as a project admin, run the following command:
platform user:add user1@example.com -r admin
If you want to add user2@example.com
to the project as a contributor for Development environments and a viewer for Staging environments, run the following command:
platform user:add user2@example.com -r development:contributor -r staging:viewer
To remove a user from a project:
In the conole:
- Navigate to your organization or a project in it.
- Open the user menu (your name or profile picture).
- Click Users.
- For the user you want to remove, click More.
- For the project you want to remove them from, click More.
- Click Remove from project.
- Click Yes.
With the CLI:
platform user:delete user1@example.com
To apply SSH access changes after changing a user’s permissions for an environment type, trigger a redeploy.
If you continue having issues after following these steps, or have any further questions, please do not hesitate to contact support.