library
turbot/gcp
Get Involved
Version
Pipeline: Delete Service Account Key
This pipeline deletes a key from a Google Cloud IAM service account.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.delete_service_account_key \ --arg 'project_id=<string>' \ --arg 'iam_account=<string>' \ --arg 'key_id=<string>'
Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" { pipeline = gcp.pipeline.delete_service_account_key args = { project_id = <string> iam_account = <string> key_id = <string> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.gcp | Yes | Name of GCP connection to use. If not provided, the default GCP connection will be used. | connection.gcp.default |
project_id | string | Yes | The GCP project ID. | - |
iam_account | string | Yes | The email of the IAM service account. | - |
key_id | string | Yes | The ID of the key to delete. | - |
Outputs
Name | Description |
---|---|
service_account_key_deletion_info | Information about the deleted service account key. |