library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Remove Specific Label from Compute Image

This pipeline removes specific labels from a Google Compute Engine virtual machine image.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_specific_label_from_compute_image \
--arg 'project_id=<string>' \
--arg 'image_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_image
args = {
project_id = <string>
image_name = <string>
label_keys = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesThe GCP application credentials file path.default
project_idstringYesThe GCP project ID.-
image_namestringYesThe GCP image name.-
label_keyslist(string)YesThe GCP labels.-

Outputs

NameDescription
imageInformation about the GCP compute image.