Skip to content

chore(deps): Update Terraform terraform-google-modules/scheduled-function/google to v5 #263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps): Update Terraform terraform-google-modules/scheduled-func…
…tion/google to v5
  • Loading branch information
renovate[bot] authored Sep 13, 2024
commit f2b35192b96e90ad73b4a4f1aaa373ee5c88a9bf
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
Loading