Skip to content
Closed
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/automatic-labelling-folder/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module "localhost_function" {
project_id = var.project_id
region = var.region
source_directory = "${path.module}/function_source"
runtime = "nodejs10"
runtime = "nodejs20"
max_instances = 3000
}

Expand Down
2 changes: 1 addition & 1 deletion examples/automatic-labelling-from-localhost/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module "localhost_function" {
project_id = var.project_id
region = var.region
source_directory = "${path.module}/function_source"
runtime = "nodejs10"
runtime = "nodejs20"
max_instances = 3000
}

Expand Down
2 changes: 1 addition & 1 deletion examples/automatic-labelling-from-repository/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module "repository_function" {

description = "Labels resource with owner information."
entry_point = "labelResource"
runtime = "nodejs10"
runtime = "nodejs20"
max_instances = 3000

environment_variables = {
Expand Down
2 changes: 1 addition & 1 deletion examples/dynamic-files/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ module "localhost_function" {
project_id = var.project_id
region = var.region
source_directory = "${path.module}/function_source"
runtime = "nodejs10"
runtime = "nodejs20"
max_instances = 3000

source_dependent_files = [local_file.file]
Expand Down