diff --git a/examples/bigquery/main.tf b/examples/bigquery/main.tf index 0bcf1cb5..bbe7223b 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 c65beeb8..2a5a2027 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 2a04b314..255812b1 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 b7d0dca4..e3149943 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 8fd85b1f..5d5632b8 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