Last updated

Teams and users

Teams and users are an important part of configuring role-based access control (RBAC) for your projects.

Teams are groups of users; you can assign users to more than one team. Add users to teams in one of the following ways:

Team names used in the team mapping single sign-on settings and added in Reunite must match the names listed in the rbac configuration in your redocly.yaml file. Redocly also provides default teams.

Default teams

Redocly provides a few built-in teams that are applied to users automatically:

  • authenticated: This team is assigned to all authenticated users in addition to the teams assigned from the IdP (identity provider).
  • anonymous: This team is assigned to all unauthenticated users.

Without a rbac configuration, authenticated and anonymous teams do not influence resource access. These default teams can be useful when you do not need to set up granular permissions and only want to restrict access to unauthenticated users.

For example, the following rbac configuration allows users in the authenticated team read access to all files in a project:

rbac:
  content:
    '**':
       authenticated: read

The authenticated and anonymous names are reserved team names. If you define a team with the same name in the redocly.yaml file, it won't work as expected.

Team mapping

Redocly also includes the following built-in teams based on organization roles assigned in Reunite:

  • redocly.owners: This team is assigned to all users with the owner organization role.
  • redocly.members: This team is assigned to all users with the member organization role.
  • redocly.viewers: This team is assigned to all users with the viewer organization role.
  • redocly.billing: This team is assigned to all users with the billing organization role.

These teams are useful when adding an identity provider (IdP) in Reunite. You have the option when adding an IdP to configure team mapping. Team mapping is a way to connect groups in your IdP to RBAC teams in Redocly. See the SSO concept documentation for more information on team mapping.

Multiple teams

If users belong to multiple teams, they have the combination of the roles assigned to their teams.

For example, the following configuration defines the Developers team with the write role and the authenticated team with the read role for the ** scope.

rbac:
  reunite:
    anonymous: read
    authenticated: read
    Developers: write
  content:
    '**':
      anonymous: read
      authenticated: read
      Developers: write
    docs/**/*.md:
      Developers: read
      authenticated: read

As a result, users in both the Developers and authenticated teams have write role permissions for the other resources, but only read role permissions for the docs/**/*.md resources.

Resources