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

update password requirements #10

Open
afeld opened this issue Jul 29, 2021 · 0 comments
Open

update password requirements #10

afeld opened this issue Jul 29, 2021 · 0 comments

Comments

@afeld
Copy link

afeld commented Jul 29, 2021

Per NIST SP 800-63B:

Memorized secrets SHALL be at least 8 characters in length if chosen by the subscriber. … No other complexity requirements for memorized secrets SHOULD be imposed.

Suggest updating the defaults to match.

grace-config/variables.tf

Lines 65 to 105 in 50ee1c6

variable "iam_password_policy_require_uppercase" {
type = bool
description = "(optional) The boolean value indicating whether the password policy requires uppercase letters"
default = true
}
variable "iam_password_policy_require_lowercase" {
type = bool
description = "(optional) The boolean value indicating whether the password policy requires lowercase letters"
default = true
}
variable "iam_password_policy_require_symbols" {
type = bool
description = "(optional) The boolean value indicating whether the password policy requires symbols"
default = true
}
variable "iam_password_policy_require_numbers" {
type = bool
description = "(optional) The boolean value indicating whether the password policy requires numbers"
default = true
}
variable "iam_password_policy_min_length" {
type = number
description = "(optional) The boolean value indicating the minimum password length"
default = 16
}
variable "iam_password_policy_history_length" {
type = number
description = "(optional) The boolean value indicating the number of passwords to remember and prevent reuse"
default = 10
}
variable "iam_password_policy_max_age_days" {
type = number
description = "(optional) The boolean value indicating the number of days before a password expires"
default = 90
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant