File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
google-beta/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 @@ -622,9 +622,10 @@ func ResourceContainerCluster() *schema.Resource {
622622 Description : `Minimum amount of the resource in the cluster.` ,
623623 },
624624 "maximum" : {
625- Type : schema .TypeInt ,
626- Optional : true ,
627- Description : `Maximum amount of the resource in the cluster.` ,
625+ Type : schema .TypeInt ,
626+ Description : `Maximum amount of the resource in the cluster.` ,
627+ Required : true ,
628+ ValidateFunc : validation .IntAtLeast (1 ),
628629 },
629630 },
630631 },
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