Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = "~> 7.0"
version = "~> 8.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 = "~> 7.0"
version = "~> 8.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 = "~> 7.0"
version = "~> 8.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 = "~> 7.0"
version = "~> 8.0"

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