Manage Group Mappings for Confluent Cloud

Use the Confluent Cloud Console, Confluent CLI, or Confluent Cloud APIs to manage group mappings:

Prerequisites

Create a group mapping

An admininstrator starts a group mapping by designating a SAML attribute for Confluent Cloud to extract the assigned group. For most organizations, the groups attribute is the user groups or security groups, but any SAML attribute configured by the identity provider can be used as groups (such as roles or a custom-defined attribute).

A group mapping is an association between one or more groups and a set of Confluent Cloud RBAC roles.

  1. On the Accounts & access page, click Add group mapping in the User group permissions section. The New Group Mapping page appears.

  2. In the Group mapping details section, enter the Name and Description for the group mapping.

  3. In the Map group or attribute value section, select Basic to map a simple literal group, or Advanced to map groups based on a more complex condition.

    • Basic: Enter the value for a single group or attribute. For example, if the group claim is groups, enter the name of the group.
    • Advanced: Enter a CEL expression that allows mappings of one or more groups. Note that setting the value to true results in the group mapping being applied to all SSO users without needing to map to any specific groups from the SAML request.
  4. Click Next. The New Group Mapping page appears.

  5. In the New Group Mapping page, assign the roles to the resources that the group mapping can access.

    1. Search for resources or expand the navigation tree and select a Confluent Cloud resource: Organization, Environment, Cluster, Topics, Schema Registry, Consumer Groups, Transactional IDs, ksqlDB Cluster, Connector, or Pipeline.
    2. Click Add role assignment. The New role assignment page appears.
    3. Select a role and click Add. Under the name of your group mapping, the assigned role appears with the resource and ID.
    4. Repeat the previous step to add more roles, if needed, to the group mapping.
    5. Click Next. The New Group Mapping page appears.
    6. Review your new group mapping and click Save. The Accounts & access page appears displaying the new group mapping in the User group permissions section.

    You successfully added your new group mapping. If desired, you can continue adding group mappings.

Update a group mapping

  1. Go to the Single sign-on tab on the Accounts & access page at https://confluent.cloud/settings/org/sso.

  2. In the table of group mappings under User group permissions, click the group mapping under Name that you want to update. The group mapping details page appears.

  3. Edit the Settings (**Name and Description fields) or Mapping for the group mapping, and click Save.

    You can edit the lines directly in the Mapping section, or click Edit existing access to open the New access for <group-mapping-name> page, assign roles to resources, and click Save.

  4. Click Save to save your group mapping updates.

The group mapping is updated and the Accounts & access page reappears displaying the updated group mapping in the User group permissions section.

Describe a group mapping

  1. Go to the Single sign-on tab on the Accounts & access page at https://confluent.cloud/settings/org/sso.

  2. In the table of group mappings under User group permissions, click the name of the group mapping you want to see the details for.

    The group mapping details view appears.

List group mappings

  1. Go to the Single sign-on tab on the Accounts & access page at https://confluent.cloud/settings/org/sso.

The group mappings are listed with their Name, Mapping, Group mapping ID, and Description. Click on a group mapping name to view the details of the group mapping.

Delete a group mapping

  1. Go to the Single sign-on tab on the Accounts & access page at https://confluent.cloud/settings/org/sso.
  2. In the table of group mappings under User group permissions, hover your cursor over the row you want to delete and click Delete (trash can icon) . The Confirm deletion dialog appears.
  3. When you are sure you want to delete the group mapping, enter the group mapping ID to confirm, and click Confirm.

The group mapping is deleted and the Accounts & access page appears displaying the remaining group mappings in the User group permissions section.

Add role-binding to a group mapping

You can add role bindings to a group mapping to grant access to resources. Here’s an example showing how to add role bindings to a group mapping using the Confluent CLI:

confluent iam rbac role-binding create \
  --principal User:group-DApG \
  --environment env-y0t432 \
  --cloud-cluster lkc-8qrnp

Note that the group is defined as User:group-DApG. The group is defined as a User resource type, with the resource ID of the group mapping. The group mapping ID is group-DApG.

For more information, see Confluent CLI Reference: confluent iam rbac role-binding create.