Google Cloud auth method (API)
This is the API documentation for the Vault Google Cloud auth method. To learn more about the usage and operation, see the Vault Google Cloud method documentation.
This documentation assumes the plugin method is mounted at the /auth/gcp
path in Vault. Since it is possible to enable auth methods at any location, please update your API calls accordingly.
Configure
Configures the credentials required for the plugin to perform API calls to Google Cloud. These credentials will be used to query the status of IAM entities and get service account or other Google public certificates to confirm signed JWTs passed in during login.
POST
/auth/gcp/config
Parameters
credentials
(string: "")
- A JSON string containing the contents of a GCP service account credentials file. The service account associated with the credentials file must have the following permissions. If this value is empty, Vault will try to use Application Default Credentials from the machine on which the Vault server is running.iam_alias
(string: "role_id")
- Must be eitherunique_id
orrole_id
. Ifunique_id
is specified, the service account's unique ID will be used for alias names during login. Ifrole_id
is specified, the ID of the Vault role will be used. Only used if roletype
isiam
.iam_metadata
(string: "default")
- The metadata to include on the token returned by thelogin
endpoint. This metadata will be added to both audit logs, and on theiam_alias
. By default, it includesproject_id
,role
,service_account_id
, andservice_account_email
. To include no metadata, set to""
via the CLI or[]
via the API. To use only particular fields, select the explicit fields. To restore to defaults, send only a field ofdefault
. Only select fields that will have a low rate of change for youriam_alias
because each change triggers a storage write and can have a performance impact at scale. Only used if roletype
isiam
.gce_alias
(string: "role_id")
- Must be eitherinstance_id
orrole_id
. Ifinstance_id
is specified, the GCE instance ID will be used for alias names during login. Ifrole_id
is specified, the ID of the Vault role will be used. Only used if roletype
isgce
.gce_metadata
(string: "default")
- The metadata to include on the token returned by thelogin
endpoint. This metadata will be added to both audit logs, and on thegce_alias
. By default, it includesinstance_creation_timestamp
,instance_id
,instance_name
,project_id
,project_number
,role
,service_account_id
,service_account_email
, andzone
. To include no metadata, set to""
via the CLI or[]
via the API. To use only particular fields, select the explicit fields. To restore to defaults, send only a field ofdefault
. Only select fields that will have a low rate of change for yourgce_alias
because each change triggers a storage write and can have a performance impact at scale. Only used if roletype
isgce
.custom_endpoint
(map<string|string>: <optional>)
- Specifies overrides to service endpoints used when making API requests. This allows specific requests made during authentication to target alternative service endpoints for use in Private Google Access environments.Overrides are set at the subdomain level using the following keys:
api
- Replaces the service endpoint used in API requests tohttps://www.googleapis.com
.iam
- Replaces the service endpoint used in API requests tohttps://iam.googleapis.com
.crm
- Replaces the service endpoint used in API requests tohttps://cloudresourcemanager.googleapis.com
.compute
- Replaces the service endpoint used in API requests tohttps://compute.googleapis.com
.
The endpoint value provided for a given key has the form of
scheme://host:port
. Thescheme://
and:port
portions of the endpoint value are optional.
Sample payload
Sample request
Read config
Returns the configuration, if any, including credentials.
GET
/auth/gcp/config
Sample request
Sample response
Create/Update role
Registers a role in the method. Role types have specific entities that can perform login operations against this endpoint. Constraints specific to the role type must be set on the role. These are applied to the authenticated entities attempting to login.
POST
/auth/gcp/role/:name
Parameters
name
(string: <required>)
- The name of the role.type
(string: <required>)
- The type of this role. Certain fields correspond to specific roles and will be rejected otherwise. Please see below for more information.bound_service_accounts
(array: <required for iam>)
- An array of service account emails or IDs that login is restricted to, either directly or through an associated instance. If set to*
, all service accounts are allowed (you can bind this further usingbound_projects
.)bound_projects
(array: [])
- An array of GCP project IDs. Only entities belonging to this project can authenticate under the role.add_group_aliases
(bool: false)
- If true, any auth token generated under this token will have associated group aliases, namelyproject-$PROJECT_ID
,folder-$PROJECT_ID
, andorganization-$ORG_ID
for the entities project and all its folder or organization ancestors. This requires Vault to have IAM permissionresourcemanager.projects.get
.
@include 'tokenfields.mdx'
iam
-only parameters
The following parameters are only valid when the role is of type "iam"
:
max_jwt_exp
(string: "15m")
- The number of seconds past the time of authentication that the login param JWT must expire within. For example, if a user attempts to login with a token that expires within an hour and this is set to 15 minutes, Vault will return an error prompting the user to create a new signed JWT with a shorterexp
. The GCE metadata tokens currently do not allow theexp
claim to be customized.allow_gce_inference
(bool: true)
- A flag to determine if this role should allow GCE instances to authenticate by inferring service accounts from the GCE identity metadata token.
gce
-only parameters
The following parameters are only valid when the role is of type "gce"
:
bound_zones
(array: [])
: The list of zones that a GCE instance must belong to in order to be authenticated. Ifbound_instance_groups
is provided, it is assumed to be a zonal group and the group must belong to this zone.bound_regions
(array: [])
: The list of regions that a GCE instance must belong to in order to be authenticated. Ifbound_instance_groups
is provided, it is assumed to be a regional group and the group must belong to this region. Ifbound_zones
are provided, this attribute is ignored.bound_instance_groups
(array: [])
: The instance groups that an authorized instance must belong to in order to be authenticated. If specified, eitherbound_zones
orbound_regions
must be set too.bound_labels
(array: [])
: A comma-separated list of GCP labels formatted as "key:value" strings that must be set on authorized GCE instances. Because GCP labels are not currently ACL'd, we recommend that this be used in conjunction with other restrictions.
Sample payload
Example iam
role:
Example gce
role:
Sample request
Edit service accounts on IAM role
Edit service accounts for an existing IAM role in the method. This allows you to add or remove service accounts from the list of service accounts on the role.
POST
/auth/gcp/role/:name/service-accounts
Parameters
name
(string: <required>)
- The name of an existingiam
type role. This will return an error if role is not aniam
type role.add
(array: [])
- The list of service accounts to add to the role's service accounts.remove
(array: [])
- The list of service accounts to remove from the role's service accounts.
Sample payload
Sample request
Edit labels on GCE role
Edit labels for an existing GCE role in the backend. This allows you to add or remove labels (keys, values, or both) from the list of keys on the role.
POST
/auth/gcp/role/:name/labels
Parameters
name
(string: <required>)
- The name of an existinggce
role. This will return an error if role is not agce
type role.add
(array: [])
- The list ofkey:value
labels to add to the GCE role's bound labels.remove
(array: [])
- The list of label keys to remove from the role's bound labels. If any of the specified keys do not exist, no error is returned (idempotent).
Sample payload
Sample request
Read role
Returns the previously registered role configuration.
GET
/auth/gcp/role/:name
Parameters
name
(string: <required>)
- The name of the role to read.
Sample request
Sample response
List roles
Lists all the roles that are registered with the plugin.
LIST
/auth/gcp/roles
Sample request
Sample response
Delete role
Deletes the previously registered role.
DELETE
/auth/gcp/role/:role
Parameters
role
(string: <required>)
- The name of the role to delete.
Sample request
Login
Login to retrieve a Vault token. This endpoint takes a signed JSON Web Token (JWT) and a role name for some entity. It verifies the JWT signature with Google Cloud to authenticate that entity and then authorizes the entity for the given role.
POST
/auth/gcp/login
Sample payload
role
(string: <required>)
- The name of the role against which the login is being attempted.jwt
(string: <required>)
- A Signed JSON Web Token.For
iam
type roles, this is a JWT signed with thesignJwt
method or a self-signed JWT.For
gce
type roles, this is an identity metadata token.
Sample payload
Sample request
Sample response
Last updated