library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Delete Compute Instance

This pipeline deletes Compute Engine virtual machine instance.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.delete_compute_instance \
--arg 'project_id=<string>' \
--arg 'zone=<string>' \
--arg 'instance_name=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gcp.pipeline.delete_compute_instance
args = {
project_id = <string>
zone = <string>
instance_name = <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.-
instance_name
string
YesThe GCP instance name.-

Outputs

This pipeline has no outputs.