Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/pubsub/google …
Browse files Browse the repository at this point in the history
…to v7
  • Loading branch information
renovate[bot] authored Sep 26, 2024
1 parent 76266fa commit acb3bbd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/bigquery/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/cloud_storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/kms/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/simple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/subscriptions_only/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit acb3bbd

Please sign in to comment.