Before you grant an Identity and Access Management (IAM) role to a user for a resource, you might want to know what roles are available to grant on a particular resource.
Understanding what roles are grantable
A role is grantable on or above a resource if it contains any permissions for
that resource type. For example, the storage.admin
role grants permissions to
the storage.buckets.get
and storage.objects.get
APIs, so it is grantable on
the Storage Buckets and Storage Objects resource types.
Roles can also be granted "above" the resource types that their permissions
are defined for. In other words, roles for lower-level resources can be granted
on a resource that is higher in the Google Cloud resource hierarchy. For
example, the storage.admin
role can also be granted at the project or
organization levels, in addition to Storage Buckets.
Permissions granted by a role only affect resources at the specified level or
below; they do not affect higher-level or peer resources. Additionally, when a
role is granted on a resource, only permissions applicable to the given resource
are granted, regardless of the role's name, description, or other permissions it
contains. For example, assigning the role resourcemanager.organizationAdmin
(which grants the permission resourcemanager.projects.list
) to a user on the
project level only grants them permissions for that specific project. It will
not allow them to list or administer all projects in the organization.
Similarly, assigning the compute.admin
role on a specific Compute Engine
instance only grants permissions for that instance, not others in the project.
Listing grantable roles
Before you list grantable roles, ensure that the service has been enabled in the project. If a service hasn't been enabled, its roles will not be returned.
Console
In the Cloud Console, go to the IAM page.
Click the "Select a project" drop-down menu at the top of the page.
Select the project or organization for which you want to view roles.
Click Add.
Enter the member email or domain in Members.
The Select a role drop-down menu displays all the roles (including any custom roles) that you can grant to the member on this resource.
gcloud
Use the gcloud iam list-grantable-roles
command to return a list of all roles that can be applied to a given
resource.
gcloud iam list-grantable-roles full-resource-name
Depending on the desired resource, a large number of roles may be returned. To limit the results, you can specify a filter expression.
The output will look something like:
description: Full control of all Compute Engine resources.
name: roles/compute.admin
title: Compute Admin
---
description: Full control of Compute Engine instance resources.
name: roles/compute.instanceAdmin
title: Compute Instance Admin
# Additional results here...
REST
The
roles.queryGrantableRoles
method returns a list of all roles grantable on a resource.
Before using any of the request data below, make the following replacements:
full-resource-name
: A URI consisting of the service name and the path to the resource. For examples, see Full resource names.
HTTP method and URL:
POST https://iam.googleapis.com/v1/roles:queryGrantableRoles
Request JSON body:
{ "fullResourceName": "full-resource-name" }
To send your request, expand one of these options:
You should receive a JSON response similar to the following:
{ "roles": [ { "name": "roles/compute.admin", "title": "Compute Admin", "description": "Full control of all Compute Engine resources." }, { "name": "roles/compute.instanceAdmin", "title": "Compute Instance Admin (beta)", "description": "Full control of Compute Engine instance resources." } ] }
C#
Before trying this sample, follow the C# setup instructions in the IAM Quickstart Using Client Libraries. For more information, see the IAM C# API reference documentation.
Go
Before trying this sample, follow the Go setup instructions in the IAM Quickstart Using Client Libraries. For more information, see the IAM Go API reference documentation.
Java
Before trying this sample, follow the Java setup instructions in the IAM Quickstart Using Client Libraries. For more information, see the IAM Java API reference documentation.
Python
Before trying this sample, follow the Python setup instructions in the IAM Quickstart Using Client Libraries. For more information, see the IAM Python API reference documentation.
In the examples above, the full resource name is a scheme-less URI consisting of a DNS-compatible API service name and a resource path.
For example, to return all roles grantable on a project, use:
//cloudresourcemanager.googleapis.com/projects/project-id
Lower-level resources have a more detailed fully qualified name. For example, use the following to return all roles grantable on a Compute Engine instance:
//compute.googleapis.com/projects/project-id/zones/zone-name/instances/instance-id
What's next
- Read about the available IAM roles.
- Learn how to grant, change, and revoke a member's access.
- See examples of resource names for different types of resources.