^^ please ignore, the only issue was the way of retrieving service account it, the following fixes i...
p
^^ please ignore, the only issue was the way of retrieving service account it, the following fixes it:
Copy code
envManagementAccount.id.apply(
    (envMgmtId) =>
      new confluentcloud.RoleBinding(
        `...`,
        {
          principal: `User:${envMgmtId}`,
          roleName: 'CloudClusterAdmin',
          crnPattern: clusterConfig.cluster.rbacCrn,
        },
      )
  );