1. Google Cloud Documentation - View access to a project
folder
or organization: "You can get a list of principals who have access to a project... using the Google Cloud console... In the Google Cloud console
go to the IAM page... The IAM page displays all of the principals who have IAM roles on your project
and what roles they are granted."
Source: Google Cloud Documentation
"IAM > Documentation > How-to guides > Granting
changing
and revoking access > View access to a project
folder
or organization".
2. Google Cloud SDK Documentation - gcloud projects get-iam-policy: This command is the CLI equivalent for viewing the full policy. "This command prints the IAM policy for a project... The output includes an etag field identifying the version of the policy." The policy itself contains the bindings between members and roles.
Source: Google Cloud SDK Documentation
gcloud projects get-iam-policy.
3. Google Cloud SDK Documentation - gcloud iam roles list: "List the IAM roles for a project or organization." This command's description confirms it only lists the roles themselves
not their assignments.
Source: Google Cloud SDK Documentation
gcloud iam roles list.