This is the API documentation for the Vault Google Cloud Platform (GCP)
secrets engine. For general information about the usage and operation of
the GCP secrets engine, please see these docs.
This documentation assumes the GCP secrets engine is enabled at the /gcp path
in Vault. Since it is possible to mount secrets engines at any path, please
update your API calls accordingly.
ttl (int: 0 || string:"0s") – Specifies default config TTL for long-lived credentials
(i.e. service account keys). Accepts integer number of seconds or Go duration format string.
max_ttl (int: 0 || string:"0s")– Specifies the maximum config TTL for long-lived credentials
(i.e. service account keys). Accepts integer number of seconds or Go duration format string.**
Request to rotate the GCP service account credentials used by Vault
for this mount. A new key will be generated for the service account,
replacing the internal value, and then a deletion of the old service
account key is scheduled. Note that this does not create a new service
account, only a new version of the service account key.
This path is only valid if Vault has been configured to use GCP credentials via
the config/ endpoint where "credentials" were specified. Additionally, the
provided service account must have permissions to create and delete service
account keys.
This method allows you to create a roleset or update an existing roleset. See docs for the GCP secrets backend
to learn more about what happens when you create or update a roleset.
If you update a roleset's bindings, this will effectively revoke any secrets
generated under this roleset.
name (string: <required>): Required. Name of the role. Cannot be updated.
secret_type (string: "access_token"): Type of secret generated for this role set. Accepted values: access_token, service_account_key. Cannot be updated.
project (string: <required>): Name of the GCP project that this roleset's service account will belong to. Cannot be updated.
bindings (string: <required>): Bindings configuration string (expects HCL or JSON format in raw or base64-encoded string)
token_scopes (array: []): List of OAuth scopes to assign to access_token secrets generated under this role set (access_token role sets only)
This will rotate the service account this roleset uses to generate secrets.
(this also replaces the key access_token roleset). This can be used to invalidate
old secrets generated by the roleset or fix issues if a roleset's service account
(and/or keys) was changed outside of Vault (i.e. through GCP APIs/cloud console).
This method allows you to create a static account or update an existing static account. See docs for the GCP secrets backend
to learn more about what happens when you create or update a static account.
If you update a static account's bindings, this will effectively revoke any secrets
generated under this static account.
name (string: <required>): Name of the static account. Cannot be updated.
secret_type (string: "access_token"): Type of secret generated for this static account. Accepted values: access_token, service_account_key. Cannot be updated.
service_account_email (string: <required>): Email of the GCP service account to manage. Cannot be updated.
bindings (string): Bindings configuration string (expects HCL or JSON format in raw or base64-encoded string). Optional.
token_scopes (array: []): List of OAuth scopes to assign to access_token secrets generated under this static account (access_token static accounts only)
»Generate Secret (IAM Service Account Creds): OAuth2 Access Token
Method
Path
GET / POST
/gcp/roleset/:roleset/token
GET / POST
/gcp/static-account/:static-account/token
GET / POST
/gcp/token/:roleset (deprecated)
Generates an OAuth2 token with the scopes defined on the roleset or static account. This OAuth access token can
be used in GCP API calls, e.g. curl -H "Authorization: Bearer $TOKEN" ...
Tokens are non-revocable and non-renewable and have a static TTL of an hour. The TTL configured
for the backend (either through the default system TTLs or through the config/ endpoint)
do not apply.
roleset (string:<required>): Name of an roleset with secret type service_account_key to generate key under.
static-account (string:<required>): Name of an static account with secret type service_account_key to generate key under.
key_algorithm (string:"KEY_ALG_RSA_2048"): Key algorithm used to generate key. Defaults to 2k RSA key
You probably should not choose other values (i.e. 1k), but accepted values are
enum(ServiceAccountKeyAlgorithm)
key_type (string:"TYPE_GOOGLE_CREDENTIALS_FILE): Private key type to generate. Defaults to JSON credentials file.
Accepted values are enum(ServiceAccountPrivateKeyType)
ttl (string: ""): Specifies the Time To Live value provided as a string duration with time suffix. If not set, uses the system default value.