Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature dry asg and launch config #14

Merged
merged 10 commits into from
Sep 29, 2018
Prev Previous commit
Next Next commit
increase number of users returned by go routine to 1k
  • Loading branch information
joshuamkite committed Sep 27, 2018
commit a530be9e6db9b85773eca07e09af7a0eaecd8198
2 changes: 1 addition & 1 deletion user_data/iam_authorized_keys_code/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func users(svc *iam.IAM, iamGroup string) ([]*iam.User, error) {
return resp.Users, err
}
params := &iam.ListUsersInput{
MaxItems: aws.Int64(5000),
MaxItems: aws.Int64(1000),
}
resp, err := svc.ListUsers(params)
return resp.Users, err
Expand Down