library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Delete VPC Network

This pipeline deletes Compute Engine networks. Networks can only be deleted when no other resources (e.g., virtual machine instances) refer to them.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.delete_vpc_network \
--arg 'project_id=<string>' \
--arg 'network_name=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gcp.pipeline.delete_vpc_network
args = {
project_id = <string>
network_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.-
network_name
string
YesThe name of the VPC network to delete.-

Outputs

This pipeline has no outputs.