File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ Then perform the following commands on the root folder:
4646| function\_ environment\_ variables | A set of key/value environment variable pairs to assign to the function. | ` map(string) ` | ` {} ` | no |
4747| function\_ event\_ trigger\_ failure\_ policy\_ retry | A toggle to determine if the function should be retried on failure. | ` bool ` | ` false ` | no |
4848| function\_ labels | A set of key/value label pairs to assign to the function. | ` map(string) ` | ` {} ` | no |
49- | function\_ max\_ instances | The maximum number of parallel executions of the function. | ` number ` | ` 0 ` | no |
49+ | function\_ max\_ instances | The maximum number of parallel executions of the function. | ` number ` | ` null ` | no |
5050| function\_ name | The name to apply to the function | ` string ` | n/a | yes |
5151| function\_ runtime | The runtime in which the function will be executed. | ` string ` | ` "nodejs10" ` | no |
5252| function\_ service\_ account\_ email | The service account to run the function as. | ` string ` | ` "" ` | no |
Original file line number Diff line number Diff line change 1616
1717module "project" {
1818 source = " terraform-google-modules/project-factory/google"
19- version = " ~> 10.2 "
19+ version = " ~> 14 "
2020
2121 name = " ci-scheduled-function"
2222 random_project_id = " true"
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ variable "function_service_account_email" {
112112
113113variable "function_max_instances" {
114114 type = number
115- default = 0
115+ default = null
116116 description = " The maximum number of parallel executions of the function."
117117}
118118
You can’t perform that action at this time.
0 commit comments