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
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ module "localhost_function" {
59
59
| description | The description of the function. | string |`"Processes events."`| no |
60
60
| entry\_point | The name of a method in the function source which will be invoked when the function is executed. | string | n/a | yes |
61
61
| environment\_variables | A set of key/value environment variable pairs to assign to the function. | map(string) |`<map>`| no |
62
-
| event\_trigger | A source that fires events in response to a condition in another service. | map(string) |n/a|yes|
62
+
| event\_trigger | A source that fires events in response to a condition in another service. | map(string) |`<map>`|no|
63
63
| event\_trigger\_failure\_policy\_retry | A toggle to determine if the function should be retried on failure. | bool |`"false"`| no |
64
64
| files\_to\_exclude\_in\_source\_dir | Specify files to ignore when reading the source_dir | list(string) |`<list>`| no |
65
65
| ingress\_settings | The ingress settings for the function. Allowed values are ALLOW_ALL, ALLOW_INTERNAL_AND_GCLB and ALLOW_INTERNAL_ONLY. Changes to this field will recreate the cloud function. | string |`"ALLOW_ALL"`| no |
@@ -73,13 +73,15 @@ module "localhost_function" {
73
73
| 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 |
74
74
| source\_directory | The pathname of the directory which contains the function source code. | string | n/a | yes |
75
75
| timeout\_s | The amount of time in seconds allotted for the execution of the function. | number |`"60"`| no |
76
+
| trigger\_http | Wheter to use HTTP trigger instead of the event trigger. | bool |`"null"`| no |
76
77
| 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 |
77
78
| vpc\_connector\_egress\_settings | The egress settings for the connector, controlling what traffic is diverted through it. Allowed values are ALL_TRAFFIC and PRIVATE_RANGES_ONLY. If unset, this field preserves the previously set value. | string |`"null"`| no |
78
79
79
80
## Outputs
80
81
81
82
| Name | Description |
82
83
|------|-------------|
84
+
| https\_trigger\_url | URL which triggers function execution. |
0 commit comments