diff --git a/pkg/resources/warehouse.go b/pkg/resources/warehouse.go index b80b29fbae..cfea6deeaf 100644 --- a/pkg/resources/warehouse.go +++ b/pkg/resources/warehouse.go @@ -45,14 +45,14 @@ var warehouseSchema = map[string]*schema.Schema{ Description: "Specifies the maximum number of server clusters for the warehouse.", Optional: true, Computed: true, - ValidateFunc: validation.IntBetween(1, 10), + ValidateFunc: validation.IntAtLeast(1), }, "min_cluster_count": { Type: schema.TypeInt, Description: "Specifies the minimum number of server clusters for the warehouse (only applies to multi-cluster warehouses).", Optional: true, Computed: true, - ValidateFunc: validation.IntBetween(1, 10), + ValidateFunc: validation.IntAtLeast(1), }, "scaling_policy": { Type: schema.TypeString,