Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/scheduled-func…
Browse files Browse the repository at this point in the history
…tion/google to v5 (#263)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Sep 19, 2024
1 parent b5c2efb commit 02fa343
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/logs-slack-alerts/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "log_slack_alerts_example" {
source = "terraform-google-modules/scheduled-function/google"
version = "~> 4.0"
version = "~> 5.0"

project_id = var.project_id
job_name = "logs_query"
Expand Down
2 changes: 1 addition & 1 deletion examples/pubsub_scheduled/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ resource "random_pet" "main" {

module "pubsub_scheduled_example" {
source = "terraform-google-modules/scheduled-function/google"
version = "~> 4.0"
version = "~> 5.0"

project_id = var.project_id
job_name = "pubsub-example-${random_pet.main.id}"
Expand Down
4 changes: 2 additions & 2 deletions examples/pubsub_scheduled_multiple/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "pubsub_scheduled_1" {
source = "terraform-google-modules/scheduled-function/google"
version = "~> 4.0"
version = "~> 5.0"

project_id = var.project_id
job_name = "pubsub-example"
Expand All @@ -30,7 +30,7 @@ module "pubsub_scheduled_1" {

module "pubsub_scheduled_2" {
source = "terraform-google-modules/scheduled-function/google"
version = "~> 4.0"
version = "~> 5.0"

project_id = var.project_id
function_entry_point = "doSomething2"
Expand Down

0 comments on commit 02fa343

Please sign in to comment.