Skip to content

chore: bump log_export version and fixes nodejs runtime environment #269

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
Merged
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