Ensure Alibaba Cloud RAM Account maximal login attempts is less than 5
Error: Alibaba Cloud RAM password policy maximal login attempts is more than 4
Bridgecrew Policy ID: BC_ALI_IAM_4
Checkov Check ID: CKV_ALI_23
Severity: MEDIUM
Alibaba Cloud RAM password policy maximal login attempts is more than 4.
Description
Fix - Buildtime - Terraform
resource "alicloud_ram_account_password_policy" "pass" {
minimum_password_length = 9
require_lowercase_characters = false
require_uppercase_characters = false
require_numbers = false
require_symbols = false
hard_expiry = true
max_password_age = 12
password_reuse_prevention = 5
max_login_attempts = 3
}
Updated about 1 month ago
Did this page help you?