File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
google/services/container Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change
1
+ ```release-note:bug
2
+ container: marked `cluster_autoscaling.resource_limits.maximum` as required as requests would fail if it was not set
3
+ ```
Original file line number Diff line number Diff line change @@ -579,9 +579,10 @@ func ResourceContainerCluster() *schema.Resource {
579
579
Description : `Minimum amount of the resource in the cluster.` ,
580
580
},
581
581
"maximum" : {
582
- Type : schema .TypeInt ,
583
- Optional : true ,
584
- Description : `Maximum amount of the resource in the cluster.` ,
582
+ Type : schema .TypeInt ,
583
+ Description : `Maximum amount of the resource in the cluster.` ,
584
+ Required : true ,
585
+ ValidateFunc : validation .IntAtLeast (1 ),
585
586
},
586
587
},
587
588
},
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ for a list of types.
582
582
583
583
* ` minimum ` - (Optional) Minimum amount of the resource in the cluster.
584
584
585
- * ` maximum ` - (Optional ) Maximum amount of the resource in the cluster.
585
+ * ` maximum ` - (Required ) Maximum amount of the resource in the cluster.
586
586
587
587
<a name =" nested_auto_provisioning_defaults " ></a >The ` auto_provisioning_defaults ` block supports:
588
588
You can’t perform that action at this time.
0 commit comments