We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
in rotatekeys.go, we currently use regex to determine whether a user is human or not:
rotatekeys.go
//validAwsKey returns a bool that reflects whether the provided keys.Key is // valid, based on aws-specific rules func validAwsKey(key keys.Key, config config.Config) (valid bool) { if config.IncludeAwsUserKeys { valid = true } else { match, _ := regexp.MatchString("[a-zA-Z]\\.[a-zA-Z]", key.Name) valid = !match } return }
we should instead determine this from the existence of a login-profile for the user. Potentially this
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in
rotatekeys.go
, we currently use regex to determine whether a user is human or not:we should instead determine this from the existence of a login-profile for the user. Potentially this
The text was updated successfully, but these errors were encountered: