library
turbot/gcp
Get Involved
Version
Pipeline: Add Labels to DNS Managed Zone
This pipeline adds labels to a Google Cloud DNS managed zone.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.add_labels_to_dns_managed_zone \ --arg 'project_id=<string>' \ --arg 'zone_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_dns_managed_zone args = { project_id = <string> zone_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. | - |
zone_name | string | Yes | The name of the DNS managed zone. | - |
labels | map(string) | Yes | The GCP labels to add. | - |
Outputs
Name | Description |
---|---|
managed_zone | Information about the DNS managed zone. |