library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Pipeline: Delete Compute Address

This pipeline facilitates the deletion of Compute Engine addresses.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.delete_compute_address \
--arg 'project_id=<string>' \
--arg 'address_name=<string>' \
--arg 'region=<string>'

Use this pipeline

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

step "pipeline" "step_name" {
pipeline = gcp.pipeline.delete_compute_address
args = {
project_id = <string>
address_name = <string>
region = <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.-
address_name
string
YesThe name of the address to delete.-
region
string
YesThe region or location of the address to delete.-

Outputs

This pipeline has no outputs.