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 {
579579 Description : `Minimum amount of the resource in the cluster.` ,
580580 },
581581 "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 ),
585586 },
586587 },
587588 },
Original file line number Diff line number Diff line change @@ -582,7 +582,7 @@ for a list of types.
582582
583583* ` minimum ` - (Optional) Minimum amount of the resource in the cluster.
584584
585- * ` maximum ` - (Optional ) Maximum amount of the resource in the cluster.
585+ * ` maximum ` - (Required ) Maximum amount of the resource in the cluster.
586586
587587<a name =" nested_auto_provisioning_defaults " ></a >The ` auto_provisioning_defaults ` block supports:
588588
You can’t perform that action at this time.
0 commit comments