library
turbot/gcp
OverviewPipelines
0
Triggers
0
Variables
GitHub

Remove Labels from Dataproc Cluster

This pipeline removes specified labels from a Google Cloud Dataproc cluster.

Run the pipeline

To run this pipeline from your terminal:

flowpipe pipeline run gcp.pipeline.remove_labels_from_dataproc_cluster \
--arg 'project_id=<string>' \
--arg 'region=<string>' \
--arg 'cluster_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_dataproc_cluster
args = {
project_id = <string>
region = <string>
cluster_name = <string>
label_keys = <list(string)>
}
}

Params

NameTypeRequiredDescriptionDefault
credstringYesGCP credentials to usedefault
project_idstringYesThe GCP project ID.-
regionstringYesThe GCP region where the Dataproc cluster is located.-
cluster_namestringYesThe name of the Dataproc cluster.-
label_keyslist(string)YesThe GCP label keys to remove.-

Outputs

NameDescription
clusterInformation about the Dataproc cluster.