library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Remove Labels from Compute Snapshot

This pipeline removes specified labels from a Google Compute Engine snapshot.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_specific_label_from_compute_snapshot \
--arg 'project_id=<string>' \
--arg 'snapshot_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_snapshot
args = {
project_id = <string>
snapshot_name = <string>
label_keys = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesThe GCP application credentials file path.default
project_idstringYesThe GCP project ID.-
snapshot_namestringYesThe GCP snapshot name.-
label_keyslist(string)YesThe GCP label keys to remove.-

Outputs

NameDescription
snapshotInformation about the GCP compute snapshot.