You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ module "localhost_function" {
71
71
| source\_dependent\_files | A list of any Terraform created `local_file`s that the module will wait for before creating the archive. | object |`<list>`| no |
72
72
| source\_directory | The pathname of the directory which contains the function source code. | string | n/a | yes |
73
73
| timeout\_s | The amount of time in seconds allotted for the execution of the function. | number |`"60"`| no |
74
+
| vpc\_connector | The VPC Network Connector that this cloud function can connect to. It should be set up as fully-qualified URI. The format of this field is projects/*/locations/*/connectors/*. | string |`"null"`| no |
Copy file name to clipboardExpand all lines: variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -129,3 +129,9 @@ variable "ingress_settings" {
129
129
default="ALLOW_ALL"
130
130
description="The ingress settings for the function"
131
131
}
132
+
133
+
variable"vpc_connector" {
134
+
type=string
135
+
default=null
136
+
description="The VPC Network Connector that this cloud function can connect to. It should be set up as fully-qualified URI. The format of this field is projects/*/locations/*/connectors/*."
0 commit comments