library
turbot/gcp
Get Involved
Version
Pipeline: Manage Pub/Sub topic
Create and delete Pub/Sub topics in a GCP project.
Run the pipeline
To run this pipeline from your terminal:
flowpipe pipeline run gcp.pipeline.test_create_pubsub_topic \  --arg 'project_id=<string>' \  --arg 'topic_name=<list(string)>'Use this pipeline
To call this pipeline from your pipeline, use a step:
step "pipeline" "step_name" {  pipeline = gcp.pipeline.test_create_pubsub_topic    args = {    project_id = <string>    topic_name = <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. | - | 
| topic_name | list(string)  | Yes | The name of the Pub/Sub topic. | - | 
Outputs
| Name | Description | 
|---|---|
| create_pubsub_topic | |
| delete_pubsub_topic | 
Tags
folder = Tests