confluent iam rbac role-binding list

Description

List the role bindings for a particular principal and/or role, and a particular scope.

confluent iam rbac role-binding list [flags]

Flags

    --principal string          Principal whose role bindings should be listed.
    --current-user              Show role bindings belonging to current user.
    --role string               List role bindings under a specific role given to a principal. Or if no principal is specified, list principals with the role.
    --environment string        Environment ID for scope of role binding listings.
    --current-env               Use current environment ID for scope.
    --cloud-cluster string      Cloud cluster ID for scope of role binding listings.
    --kafka-cluster-id string   Kafka cluster ID for scope of role binding listings.
    --resource string           If specified with a role and no principals, list principals with role bindings to the role for this qualified resource.
-o, --output string             Specify the output format as "human", "json", or "yaml". (default "human")

Global Flags

-h, --help            Show help for this command.
    --unsafe-trace    Equivalent to -vvvv, but also log HTTP requests and responses which may contain plaintext secrets.
-v, --verbose count   Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).

Examples

List the role bindings for current user:

confluent iam rbac role-binding list --current-user

List the role bindings for user “u-123456”:

confluent iam rbac role-binding list --principal User:u-123456

List the role bindings for principals with role “CloudClusterAdmin”:

confluent iam rbac role-binding list --role CloudClusterAdmin --current-env --cloud-cluster lkc-123456

List the role bindings for user “u-123456” with role “CloudClusterAdmin”:

confluent iam rbac role-binding list --principal User:u-123456 --role CloudClusterAdmin --environment env-12345 --cloud-cluster lkc-123456

See Also