Skip to content

Commit 2e9bc3f

Browse files
committed
refactor(modules/capacity-provider): update default value for weight under default_capacity_provider_strategy configuration to 1
1 parent bf7dda6 commit 2e9bc3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/capacity-provider/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ variable "default_capacity_provider_strategies" {
3535
description = "(Optional) Set of capacity provider strategies to use by default for the cluster."
3636
type = list(object({
3737
capacity_provider = string
38-
weight = optional(number, 0)
38+
weight = optional(number, 1)
3939
base = optional(number, 0)
4040
}))
4141
default = []

0 commit comments

Comments
 (0)