library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Remove Labels from Storage Bucket

This pipeline removes labels from a Google Cloud Storage bucket using gcloud.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_labels_from_storage_bucket \
--arg 'project_id=<string>' \
--arg 'bucket_name=<string>' \
--arg 'labels=<list(string)>'

Use this pipeline

To call this pipeline from your pipeline, use a step:

step "pipeline" "step_name" {
pipeline = gcp.pipeline.remove_labels_from_storage_bucket
args = {
project_id = <string>
bucket_name = <string>
labels = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesThe GCP credential.default
project_idstringYesThe GCP project ID.-
bucket_namestringYesThe GCP storage bucket name.-
labelslist(string)YesThe GCP labels to remove.-

Outputs

NameDescription
bucketInformation about the bucket with removed labels.