Skip to content

Commit

Permalink
fix(deps)!: Update Terraform terraform-google-modules/pubsub/google t…
Browse files Browse the repository at this point in the history
…o v6 (#100)
  • Loading branch information
renovate-bot authored Apr 10, 2024
1 parent fb92c16 commit bc4fe56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/cloud_function2_pubsub_trigger/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ resource "google_storage_bucket_object" "function-source" {

module "pubsub" {
source = "terraform-google-modules/pubsub/google"
version = "~> 5.0"
version = "~> 6.0"

topic = "function2-topic"
project_id = var.project_id
Expand Down
2 changes: 1 addition & 1 deletion examples/secure_cloud_function_with_sql/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ resource "google_cloud_scheduler_job" "job" {

module "pubsub" {
source = "terraform-google-modules/pubsub/google"
version = "~> 5.0"
version = "~> 6.0"

topic = "tpc-cloud-function-sql"
project_id = module.secure_harness.serverless_project_ids[0]
Expand Down
2 changes: 1 addition & 1 deletion modules/secure-cloud-function-core/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module "pubsub" {
for_each = toset(["container-analysis-notes-v1", "container-analysis-notes-v1beta1", "container-analysis-occurrences-v1", "container-analysis-occurrences-v1beta1"])

source = "terraform-google-modules/pubsub/google"
version = "~> 5.0"
version = "~> 6.0"

topic = each.value
project_id = var.project_id
Expand Down

0 comments on commit bc4fe56

Please sign in to comment.