terraform:数据流 pubsubtopic 到 bigquery

问题描述 投票:0回答:2

我想在 terraform 中为 bigquery 作业创建 pubsub 主题。数据流有这个模板。我没有找到 terraform 的例子。您能提供任何示例 terraform 代码吗?

terraform google-cloud-dataflow terraform-provider-gcp
2个回答

0
投票

我意识到这个问题已经得到解决,但我想添加我的意见。

Google 提供的模板可以在此链接找到。

如果您希望使用 Pub/Sub to BigQuery 模板创建 Terraform Dataflow 作业,您的代码将如下所示:

resource "google_dataflow_job" "big_data_job" {
  name              = "dataflow-job"
  template_gcs_path = "gs://dataflow-templates/latest/PubSub_to_BigQuery"
  temp_gcs_location = "gs://[YOUR_BUCKER]/tmp_dir"
  parameters = {
    foo = "bar"
    baz = "qux"
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.