We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MinSize
1 parent 2f41cef commit 9dcebacCopy full SHA for 9dcebac
pkg/cloud/services/autoscaling/autoscalinggroup.go
@@ -50,7 +50,7 @@ func (s *Service) SDKToAutoScalingGroup(v *autoscalingtypes.AutoScalingGroup) (*
50
// TODO(rudoi): this is just terrible
51
DesiredCapacity: v.DesiredCapacity,
52
MaxSize: aws.Int32Value(v.MaxSize), //#nosec G115
53
- MinSize: aws.Int32Value(v.MaxSize), //#nosec G115
+ MinSize: aws.Int32Value(v.MinSize), //#nosec G115
54
CapacityRebalance: aws.BoolValue(v.CapacityRebalance),
55
// TODO: determine what additional values go here and what else should be in the struct
56
}
0 commit comments