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: google/services/cloudrunv2/resource_cloud_run_v2_service.go
+24
Original file line number
Diff line number
Diff line change
@@ -113,6 +113,14 @@ This field follows Kubernetes annotations' namespacing, limits, and rules.`,
113
113
Type: schema.TypeString,
114
114
},
115
115
},
116
+
"depends_on": {
117
+
Type: schema.TypeList,
118
+
Optional: true,
119
+
Description: `Containers which should be started before this container. If specified the container will wait to start until all containers with the listed names are healthy.`,
120
+
Elem: &schema.Schema{
121
+
Type: schema.TypeString,
122
+
},
123
+
},
116
124
"env": {
117
125
Type: schema.TypeList,
118
126
Optional: true,
@@ -1800,6 +1808,7 @@ func flattenCloudRunV2ServiceTemplateContainers(v interface{}, d *schema.Resourc
Containers which should be started before this container. If specified the container will wait to start until all containers with the listed names are healthy.
0 commit comments