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: modules/job-exec/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ Functional examples are included in the
55
55
| timeout | Max allowed time duration the Task may be active before the system will actively try to mark it failed and kill associated containers. |`string`|`"600s"`| no |
56
56
| volume\_mounts | Volume to mount into the container's filesystem. | <pre>list(object({<br> name = string<br> mount_path = string<br> }))</pre> |`[]`| no |
57
57
| volumes | A list of Volumes to make available to containers. | <pre>list(object({<br> name = string<br> cloud_sql_instance = optional(object({<br> instances = set(string)<br> }))<br> gcs = optional(object({<br> bucket = string<br> read_only = optional(bool)<br> mount_options = optional(list(string))<br> }))<br> }))</pre> |`[]`| no |
58
-
| vpc\_access |VPC Access configuration to use for this Task. | <pre>list(object({<br> connector = string<br> egress = string<br> }))</pre> |`[]`| no |
58
+
| vpc\_access |Configure this to enable your service to send traffic to a Virtual Private Cloud. Set egress to ALL\_TRAFFIC or PRIVATE\_RANGES\_ONLY. Choose a connector or network\_interfaces (for direct VPC egress). [More info](https://cloud.google.com/run/docs/configuring/connecting-vpc)| <pre>object({<br> connector = optional(string)<br> egress = optional(string)<br> network_interfaces = optional(object({<br> network = optional(string)<br> subnetwork = optional(string)<br> tags = optional(list(string))<br> }))<br> })</pre> |`null`| no |
Copy file name to clipboardExpand all lines: modules/job-exec/metadata.yaml
+11-7Lines changed: 11 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -173,13 +173,17 @@ spec:
173
173
}))
174
174
defaultValue: []
175
175
- name: vpc_access
176
-
description: VPC Access configuration to use for this Task.
176
+
description: Configure this to enable your service to send traffic to a Virtual Private Cloud. Set egress to ALL_TRAFFIC or PRIVATE_RANGES_ONLY. Choose a connector or network_interfaces (for direct VPC egress). [More info](https://cloud.google.com/run/docs/configuring/connecting-vpc)
Copy file name to clipboardExpand all lines: modules/job-exec/variables.tf
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -137,12 +137,17 @@ variable "volume_mounts" {
137
137
}
138
138
139
139
variable"vpc_access" {
140
-
type=list(object({
141
-
connector =string
142
-
egress =string
143
-
}))
144
-
description="VPC Access configuration to use for this Task."
145
-
default=[]
140
+
type=object({
141
+
connector =optional(string)
142
+
egress =optional(string)
143
+
network_interfaces =optional(object({
144
+
network =optional(string)
145
+
subnetwork =optional(string)
146
+
tags =optional(list(string))
147
+
}))
148
+
})
149
+
description="Configure this to enable your service to send traffic to a Virtual Private Cloud. Set egress to ALL_TRAFFIC or PRIVATE_RANGES_ONLY. Choose a connector or network_interfaces (for direct VPC egress). [More info](https://cloud.google.com/run/docs/configuring/connecting-vpc)"
0 commit comments