mirror of
https://github.com/inspec/inspec
synced 2024-12-19 01:23:50 +00:00
d9221bb925
Add has MFA enabled member Add "has console password" member Signed-off-by: sfreeman <Steffanie.Freeman@d2l.com>
8 lines
No EOL
269 B
Ruby
8 lines
No EOL
269 B
Ruby
describe aws_iam_user('mfa_not_enabled_user') do
|
|
its('has_mfa_enabled?') { should be false }
|
|
its('has_console_password?') { should be false }
|
|
end
|
|
|
|
describe aws_iam_user('console_password_enabled_user') do
|
|
its('has_console_password?') { should be true }
|
|
end |