diff --git a/examples/automatic-labelling-folder/main.tf b/examples/automatic-labelling-folder/main.tf index ffd2790..944d3c4 100644 --- a/examples/automatic-labelling-folder/main.tf +++ b/examples/automatic-labelling-folder/main.tf @@ -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 } diff --git a/examples/automatic-labelling-from-localhost/main.tf b/examples/automatic-labelling-from-localhost/main.tf index 5f99849..ff176e1 100644 --- a/examples/automatic-labelling-from-localhost/main.tf +++ b/examples/automatic-labelling-from-localhost/main.tf @@ -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 } diff --git a/examples/automatic-labelling-from-repository/main.tf b/examples/automatic-labelling-from-repository/main.tf index a825361..195a3d3 100644 --- a/examples/automatic-labelling-from-repository/main.tf +++ b/examples/automatic-labelling-from-repository/main.tf @@ -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 = { diff --git a/examples/dynamic-files/main.tf b/examples/dynamic-files/main.tf index 44dfb86..1c5e73a 100644 --- a/examples/dynamic-files/main.tf +++ b/examples/dynamic-files/main.tf @@ -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]