library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Add Labels to Compute Instance

This pipeline adds labels to a Google Compute Engine virtual machine instance.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.add_labels_to_compute_instance \
--arg 'project_id=<string>' \
--arg 'zone=<string>' \
--arg 'instance_name=<string>' \
--arg 'labels=<map of string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gcp.pipeline.add_labels_to_compute_instance
args = {
project_id = <string>
zone = <string>
instance_name = <string>
labels = <map of string>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesThe GCP application credentials file path.default
project_idstringYesThe GCP project ID.-
zonestringYesThe GCP zone.-
instance_namestringYesThe GCP instance name.-
labelsmap of stringYesThe GCP labels.-

Outputs

NameDescription
instanceInformation about the GCP compute instance.