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.
2 parents 2f41cef + 9dcebac commit 4a657f8Copy full SHA for 4a657f8
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