library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Remove Specific Label from Compute Disk

This pipeline removes specific labels from a Google Compute Engine persistent disk.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_specific_label_from_compute_disk \
--arg 'project_id=<string>' \
--arg 'zone=<string>' \
--arg 'disk_name=<string>' \
--arg 'label_keys=<list(string)>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gcp.pipeline.remove_specific_label_from_compute_disk
args = {
project_id = <string>
zone = <string>
disk_name = <string>
label_keys = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
conn
connection.gcp
YesName of GCP connection to use. If not provided, the default GCP connection will be used.connection.gcp.default
project_id
string
YesThe GCP project ID.-
zone
string
YesThe GCP zone.-
disk_name
string
YesThe GCP disk name.-
label_keys
list(string)
YesThe GCP labels.-

Outputs

NameDescription
diskInformation about the disk.