library
turbot/gcp
Get Involved
Version
Pipeline: Remove Labels from SQL Instance
This pipeline removes specified labels from a Google Cloud SQL database instance.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.remove_labels_from_sql_instance \  --arg 'project_id=<string>' \  --arg 'instance_name=<string>' \  --arg 'label_keys=<list(string)>'Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" {  pipeline = gcp.pipeline.remove_labels_from_sql_instance    args = {    project_id = <string>    instance_name = <string>    label_keys = <list(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. | - | 
| instance_name | string | Yes | The name of the SQL database instance. | - | 
| label_keys | list(string) | Yes | The GCP label keys to remove. | - | 
Outputs
| Name | Description | 
|---|---|
| instance | Information about the SQL database instance. |