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
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,6 @@ module "cloud_run" {
57
57
| container\_concurrency | Concurrent request limits to the service |`number`|`null`| no |
58
58
| domain\_map\_annotations | Annotations to the domain map |`map(string)`|`{}`| no |
59
59
| domain\_map\_labels | A set of key/value label pairs to assign to the Domain mapping |`map(string)`|`{}`| no |
60
-
| build\_config | Optional Cloud Build Configuration for building a Cloud Run function |`object({ source_location = optional(string), function_target = optional(string), image_uri = optional(string), base_image = optional(string), enable_automatic_updates = optional(bool), worker_pool = optional(string), environment_variables = optional(map(string)), service_account = optional(string) })`|`{}`| no |
61
60
| encryption\_key | CMEK encryption key self-link expected in the format projects/PROJECT/locations/LOCATION/keyRings/KEY-RING/cryptoKeys/CRYPTO-KEY. |`string`|`null`| no |
| build\_config | Optional Cloud Build configuration for Cloud Run. This block enables building a container image from source using Cloud Build instead of specifying a prebuilt container image. | <pre>object({<br> source_location = optional(string)<br> function_target = optional(string)<br> image_uri = optional(string)<br> base_image = optional(string)<br> enable_automatic_updates = optional(bool)<br> worker_pool = optional(string)<br> environment_variables = optional(map(string))<br> service_account = optional(string)<br> })</pre> |`null`| no |
21
22
| cloud\_run\_deletion\_protection | This field prevents Terraform from destroying or recreating the Cloud Run v2 Jobs and Services |`bool`|`true`| no |
22
23
| project\_id | The project ID to deploy to |`string`| n/a | yes |
description: Port which the container listens to (http1 or h2c)
164
-
varType: |-
165
-
object({
166
-
name = string
167
-
port = number
168
-
})
151
+
varType: "object({\r\n name = string\r\n port = number\r\n })"
169
152
defaultValue:
170
153
name: http1
171
154
port: 8080
@@ -178,79 +161,22 @@ spec:
178
161
varType: list(string)
179
162
defaultValue: []
180
163
- name: startup_probe
181
-
description: |
182
-
Startup probe of application within the container.
183
-
All other probes are disabled if a startup probe is provided, until it succeeds.
184
-
Container will not be added to service endpoints if the probe fails.
185
-
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
186
-
varType: |-
187
-
object({
188
-
failure_threshold = optional(number, null)
189
-
initial_delay_seconds = optional(number, null)
190
-
timeout_seconds = optional(number, null)
191
-
period_seconds = optional(number, null)
192
-
http_get = optional(object({
193
-
path = optional(string)
194
-
http_headers = optional(list(object({
195
-
name = string
196
-
value = string
197
-
})), null)
198
-
}), null)
199
-
tcp_socket = optional(object({
200
-
port = optional(number)
201
-
}), null)
202
-
grpc = optional(object({
203
-
port = optional(number)
204
-
service = optional(string)
205
-
}), null)
206
-
})
164
+
description: "Startup probe of application within the container.\r\nAll other probes are disabled if a startup probe is provided, until it succeeds.\r\nContainer will not be added to service endpoints if the probe fails.\r\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\r\n"
Periodic probe of container liveness. Container will be restarted if the probe fails.
210
-
More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
211
-
varType: |-
212
-
object({
213
-
failure_threshold = optional(number, null)
214
-
initial_delay_seconds = optional(number, null)
215
-
timeout_seconds = optional(number, null)
216
-
period_seconds = optional(number, null)
217
-
http_get = optional(object({
218
-
path = optional(string)
219
-
http_headers = optional(list(object({
220
-
name = string
221
-
value = string
222
-
})), null)
223
-
}), null)
224
-
grpc = optional(object({
225
-
port = optional(number)
226
-
service = optional(string)
227
-
}), null)
228
-
})
167
+
description: "Periodic probe of container liveness. Container will be restarted if the probe fails.\r\nMore info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes\r\n"
description: Port which the container listens to (http1 or h2c).
219
-
varType: |-
220
-
object({
221
-
name = string
222
-
port = number
223
-
})
190
+
varType: "object({\r\n name = string\r\n port = number\r\n })"
224
191
defaultValue:
225
192
name: http1
226
193
port: 8080
@@ -234,11 +201,7 @@ spec:
234
201
defaultValue: []
235
202
- name: volume_mounts
236
203
description: "[Beta] Volume Mounts to be attached to the container (when using secret)."
237
-
varType: |-
238
-
list(object({
239
-
mount_path = string
240
-
name = string
241
-
}))
204
+
varType: "list(object({\r\n mount_path = string\r\n name = string\r\n }))"
242
205
defaultValue: []
243
206
- name: verified_domain_name
244
207
description: List of custom Domain Name.
@@ -281,11 +244,7 @@ spec:
281
244
defaultValue: private-ranges-only
282
245
- name: ssl_certificates
283
246
description: A object with a list of domains to auto-generate SSL certificates or a list of SSL Certificates self-links in the pattern `projects/<PROJECT-ID>/global/sslCertificates/<CERT-NAME>` to be used by Load Balancer.
0 commit comments