Skip to content

Commit

Permalink
Merge pull request #1408 from modular-magician/codegen-pr-2715
Browse files Browse the repository at this point in the history
Default min instances to 0 for secondary worker config
  • Loading branch information
slevenick authored Nov 18, 2019
2 parents a9ff807 + 4c37bed commit 09ea27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google-beta/resource_dataproc_autoscaling_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ Bounds: [minInstances, ). Defaults to 0.`,
Type: schema.TypeInt,
Optional: true,
Description: `Minimum number of instances for this group. Bounds: [0, maxInstances]. Defaults to 0.`,
Default: 2,
Default: 0,
AtLeastOneOf: []string{"secondary_worker_config.0.min_instances", "secondary_worker_config.0.max_instances", "secondary_worker_config.0.weight"},
},
"weight": {
Expand Down

0 comments on commit 09ea27c

Please sign in to comment.