From 39ae4465b667ac705c486f82ddc767f35d377a59 Mon Sep 17 00:00:00 2001 From: policy-librarians Date: Mon, 23 Oct 2023 21:48:35 +0000 Subject: [PATCH] for CI --- examples/cloud_storage/main.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/cloud_storage/main.tf b/examples/cloud_storage/main.tf index 567d3ca..4fec517 100644 --- a/examples/cloud_storage/main.tf +++ b/examples/cloud_storage/main.tf @@ -27,10 +27,16 @@ module "pubsub" { project_id = var.project_id topic = "cft-tf-pubsub-topic-cloud-storage" + topic_labels = { + foo_label = "foo_value" + } + cloud_storage_subscriptions = [ { name = "example_bucket_subscription" bucket = google_storage_bucket.test.name + + ack_deadline_seconds = 300 }, ] }