From db8fbdb3ee1530315fb88f7f6dc827129bed6853 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:28:14 +0000 Subject: [PATCH] chore(deps): Update Terraform terraform-google-modules/pubsub/google to v7 (#207) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- examples/bigquery/main.tf | 2 +- examples/cloud_storage/main.tf | 2 +- examples/kms/main.tf | 2 +- examples/simple/main.tf | 2 +- examples/subscriptions_only/main.tf | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/bigquery/main.tf b/examples/bigquery/main.tf index 0bcf1cb..bbe7223 100644 --- a/examples/bigquery/main.tf +++ b/examples/bigquery/main.tf @@ -20,7 +20,7 @@ provider "google" { module "pubsub" { source = "terraform-google-modules/pubsub/google" - version = "~> 6.0" + version = "~> 7.0" project_id = var.project_id topic = "cft-tf-pubsub-topic-bigquery" diff --git a/examples/cloud_storage/main.tf b/examples/cloud_storage/main.tf index c65beeb..2a5a202 100644 --- a/examples/cloud_storage/main.tf +++ b/examples/cloud_storage/main.tf @@ -24,7 +24,7 @@ provider "google" { module "pubsub" { source = "terraform-google-modules/pubsub/google" - version = "~> 6.0" + version = "~> 7.0" project_id = var.project_id topic = "cft-tf-pubsub-topic-cloud-storage" diff --git a/examples/kms/main.tf b/examples/kms/main.tf index 2a04b31..255812b 100644 --- a/examples/kms/main.tf +++ b/examples/kms/main.tf @@ -49,7 +49,7 @@ resource "google_project_iam_member" "project" { module "pubsub" { source = "terraform-google-modules/pubsub/google" - version = "~> 6.0" + version = "~> 7.0" project_id = var.project_id topic = var.topic_name diff --git a/examples/simple/main.tf b/examples/simple/main.tf index b7d0dca..e314994 100644 --- a/examples/simple/main.tf +++ b/examples/simple/main.tf @@ -20,7 +20,7 @@ provider "google" { module "pubsub" { source = "terraform-google-modules/pubsub/google" - version = "~> 6.0" + version = "~> 7.0" project_id = var.project_id topic = "cft-tf-pubsub-topic" diff --git a/examples/subscriptions_only/main.tf b/examples/subscriptions_only/main.tf index 8fd85b1..5d5632b 100644 --- a/examples/subscriptions_only/main.tf +++ b/examples/subscriptions_only/main.tf @@ -25,7 +25,7 @@ resource "google_pubsub_topic" "example" { } module "pubsub" { source = "terraform-google-modules/pubsub/google" - version = "~> 6.0" + version = "~> 7.0" project_id = var.project_id create_topic = false