library
turbot/gcp
Get Involved
Version
Pipeline: Add or Update Labels on Compute Snapshot
This pipeline adds or updates labels on a Google Compute Engine snapshot.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.add_labels_to_compute_snapshot \ --arg 'project_id=<string>' \ --arg 'snapshot_name=<string>' \ --arg 'labels=<map(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_snapshot args = { project_id = <string> snapshot_name = <string> labels = <map(string)> }}
Params
Name | Type | Required | Description | Default |
---|---|---|---|---|
conn | connection.gcp | Yes | Name of GCP connection to use. If not provided, the default GCP connection will be used. | connection.gcp.default |
project_id | string | Yes | The GCP project ID. | - |
snapshot_name | string | Yes | The GCP snapshot name. | - |
labels | map(string) | Yes | The GCP labels. | - |
Outputs
Name | Description |
---|---|
snapshot | Information about the GCP compute snapshot. |