Skip to main content
logoTetrate Service BridgeVersion: 1.5.x

Roles and Permissions

TSB offers a fine grained permissions management to control access to TSB resources. You can grant access permissions to resources such as Organizations, Tenants, Workspaces, etc. A collection of permissions can be put into Roles, which can be reused to assign permissions to the appropriate resources, for example users or groups. Once you have defined the Roles, Access Binding objects can be used to bind Roles to a set of users or teams.

Resource Model

In order to understand how to work with TSB permissions, you will need to first understand how resources are modeled in TSB.

In TSB resources are modeled as a hierarchical tree, with the Organization being the root for all resources. Organizations contain one or more Clusters, Tenants, Teams, and Users. Tenants contain one or more Workspaces. Finally, Workspaces may contain one or more Gateway Groups, Traffic Groups, and Security Groups.

note

In this document, we will use the term Config Groups to designate all of Gateway Groups, Traffic Groups, and Security Groups

TSB Resources

Roles

A Role is a set of permissions against specific resource(s). For example, you may create a Role which allows Read/Write permissions to a Workspace, and only Read on its parent Tenant.

Below is a list of permissions that are available:

Permission (Action)Description
ReadAllows reading the resource.
WriteAllows updating the resource.
CreateAllows creating child resources. (*1)
DeleteAllows deleting the resource.
SetPolicyAllows delegating control of the resource to other users.

(*1) When a user creates child resources, the user is granted ownership of the newly created resources, and thus has complete control over them.

TSB comes with a few builtin Roles with a set of permissions for the most common cases:

RoleReadWriteCreateDeleteSetPolicy
Admin
Editor
Creator
Writer
Reader

Both Admin and Editor roles are intended to give ownership (full control) of a resource tree. But while the Admin role is intended for system administrators, the Editor role is intended for users or teams who own the resource tree alone.

Creator role is intended for users that can create their own resources and see other resources. For example, a user with a Creator role may read all resources within a Workspace including resources that were created by others, but has complete ownership of resources that they have created within that Workspace.

By contrast the Writer role only allows users to read and modify existing resources, but does not allow creation of new resources.

Finally, the Reader role allows users to only read existing resources. They will not be able to do anything else with it.

Access Bindings

In TSB, Access Binding objects define the binding between a set of roles to a set of users or teams. Each of the following resources has a specific Access Binding object type that allows you to connect the Roles and the resources..

ResourceAccess Binding
OrganizationOrganizationAccessBindings
TenantTenantAccessBindings
WorkspaceWorkspaceAccessBindings
Traffic GroupTrafficAccessBindings
Security GroupSecurityAccessBindings
Gateway GroupGatewayAccessBindings

The Roles define the set of permissions against resource(s), and the Access Bindings define the Roles that are associated with a set of users/teams for a particular resource. As team members may be changed dynamically much more easily, in general it is recommended that you assign permissions to teams rather than users, so that you have greater flexibility.

warning

TSB will automatically create an Access Binding object for any of the above resources when a new resource is created. This Access Binding will set whoever user that created the resource as admin.

For example, if you create a Tenant, TSB will create a TenantAccessBindings that sets you as the admin.

Do NOT create new Access Binding if you want to grant permissions to your team because you will overwrite automatically created one. To make sure that you do not accidentally overwrite automatically created Access Bindings, first fetch the target Access Binding tctl get, edit the necessary portions, then apply using tctl apply

Fully Qualified Names

Before diving into the actual commands and object definitions you will need to understand about the fully qualified names (FQN) for TSB resources.

In order to unambiguously define a resource, each resource has a FQN that that describes their location in the resource hierarchy. These are used in the object definitions that we will be using in the examples.

The following shows the naming patterns used for each of the resources.

ResourceFQN
Organizationorganizations/<org name>
Clusterorganizations/<org name>/clusters/<cluster name>
Serviceorganizations/<org name>/services/<service name>
Teamorganizations/<org name>/teams/<team name>
Userorganizations/<org name>/users/<user name>
Tenantorganizations/<org name>/tenants/<tenant name>
Applicationorganizations/<org name>/tenants/<tenant name>/applications/<application name>
Workspaceorganizations/<org name>/tenants/<tenant name>/workspaces/<workspace name>
Gateway Grouporganizations/<org name>/tenants/<tenant name>/workspaces/<workspace name>/gatewaygroup/<group name>
Security Grouporganizations/<org name>/tenants/<tenant name>/workspaces/<workspace name>/securitygroup/<group name>
Traffic Grouporganizations/<org name>/tenants/<tenant name>/workspaces/<workspace name>/trafficgroup/<group name>

Working With Roles and Permissions

When you first install TSB, you will be using the platform administrator account which has super admin privileges. You do not want to let other members of your organization use TSB with this account for obvious reasons. You should either create new users and teams or use the ones imported from your IdP (Identity Provider) e.g LDAP, Azure AD or others.

In this section you will learn about a common scenario assigning roles and permissions to your teams. For demonstration purposes the examples will be executed through the command line using tctl, but you can configure TSB through the Web UI just the same.

For this example, please assume that you would like to configure TSB with the following teams and respective settings:

TeamDescription
Platform TeamMembers act as Organization administrators. They can create Tenants, Workspaces, Config Groups, and grant access to these resources to specific teams
App TeamMembers are able to configure their applications that run in specific namespaces. Specifically, they own a specific Traffic Group in the Workspace that they work on.
Security TeamMembers are able to read everything under a Tenant, and configure Security Group settings in the Workspaces.

The example will walk you through how to configure the permissions in iterative steps. You will need to go through all of the steps below to achieve the desired state.

Please assume that the Tenants, Workspaces, Config Groups, Users and Teams that are mentioned in this example have already been created. Also, please note that this is not the only way to achieve the same effect. Certain combinations of roles, permissions, and bindings that satisfy the above will probably exist.

Notes on Working with Access Bindings

In the examples below, make sure to use existing access binding objects instead of creating new ones. There exists exactly one access binding for each resource. If you create new binding objects, you will effectively be overwriting the existing one, and in most cases you should avoid doing this.

Instead, when you are instructed to edit an access biding in the following examples, make sure to tctl get the binding first, make the edit, and then apply it using tctl apply.

For example if you are working with OrganizationAccessBindings, get the existing bindings first (note that we have omitted the name of the organization, but you could be using the --org command line option to specify an organization):

tctl get organizationresourcebindings -o yaml > bindings.yaml

Then after you make the edits, apply the bindings:

tctl apply -f  bindings -o yaml > bindings.yaml

If this were for TenantAccessBindings, you would use tctl get tenantaccessbindings --tenant <tenant name> -o yaml. For other resources down in the hierarchy, you will need to provide additional command line options as necessary, such as --workspace, --group, etc. Please refer to the CLI reference for the available options.

Configuring the Platform Team

As the super admin user you will have to create the Platform team before doing anything. Grant the Platform team with the Admin role on the necessary resources.

In this example the Platform team is given Admin role on the a specific organization myorg. Retrieve the OrganizationAccessBindings and add the platform team (orgnizations/myorg/teams/platform):

apiVersion: rbac.tsb.tetrate.io/v2
kind: OrganizationAccessBindings
metadata:
...
spec:
allow:
- role: rbac/admin
subjects:
- team: organizations/myorg/teams/platform
...

Apply the above using tctl apply -f.

The rest of the examples assume that the above Platform team has prepared all of the necessary resources for the configuration to proceed.

Configuring for App Team and Workspaces

The app team should be able to view the resources in the Tenant, as well be able to create Config Groups within a Workspace, but nothing more. In this and the rest of examples the tenant name is assumed to be tenant1.

To grant the team read access to the Tenant, retrieve the TenantAccessBindings object for the intended tenant, and add the app team as a reader:

apiVersion: rbac.tsb.tetrate.io/v2
kind: TenantAccessBindings
metadata:
...
spec:
allow:
- role: rbac/reader
subjects:
- team: organizations/myorg/teams/app
...

To grant the team create access to the Workspace, retrieve the WorkspaceAccessBindings object for the intended workspace, and add the app team as a creator:

apiVersion: rbac.tsb.tetrate.io/v2
kind: WorkspaceAccessBindings
metadata:
...
spec:
allow:
- role: rbac/creator
subjects:
- team: organizations/myorg/teams/app

Then apply these configurations using tctl apply -f.

Configuring for Security Team and Config Groups

In previous sections it was stated that the App team should only have access to specific Traffic Groups. However, since the previous WorkspaceAccessBindings definition granted the Creator role to the App team, they will be able to create new Config Groups as they please.

Roles Permissions App Team

In this scenario the Platform team wants to restrict the App team to own a specific Traffic group that the Platform team has created for them.

Furthermore, the Security team should have similar permissions on a specific Security Group that the Platform team has created.

Roles Permissions App Security Team

To achieve this, retrieve the TenantAccessBindings for the intended tenant again, and add the security team as a reader so that they can read the tenant information. Make sure to leave the app team in there as well.

apiVersion: rbac.tsb.tetrate.io/v2
kind: TenantAccessBindings
metadata:
...
spec:
allow:
- role: rbac/reader
subjects:
- team: organizations/myorg/teams/security
...

Retrieve the WorkspaceAccessBindings for the intended workspace again. This time remove the app team from the creator role, and add the app team and the security team as readers of the Workspace.

apiVersion: rbac.tsb.tetrate.io/v2
kind: WorkspaceAccessBindings
metadata:
...
spec:
allow:
- role: rbac/reader
subjects:
- team: organizations/myorg/teams/app
- team: organizations/myorg/teams/security
...

Then retrieve the TrafficAccessBindings for the intended TrafficGroup, and add the app team as a creator. The TrafficGroup is assumed to have been created by the platform team.

apiVersion: rbac.tsb.tetrate.io/v2
kind: TrafficAccessBindings
metadata:
...
spec:
allow:
- role: rbac/creator
subjects:
- team: organizations/myorg/teams/app
...

Similarly retrieve and edit SecurityAccessBindings for the intended SecurityGroup, and add the security team as a creator. The SecurityGroup is assumed to have been created by the platform team.

apiVersion: rbac.tsb.tetrate.io/v2
kind: SecurityAccessBindings
metadata:
...
spec:
allow:
- role: rbac/creator
subjects:
- team: organizations/myorg/teams/security
...

Apply these objects using tctl apply -f.

Once everything is successfully applied, you should have TSB in the desired configuration.