mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
9 lines
172 B
Ruby
9 lines
172 B
Ruby
|
control 'iam_root_user_mfa' do
|
||
|
title 'MFA should be enabled for the root user'
|
||
|
impact 1.0
|
||
|
|
||
|
describe aws_iam_root_user do
|
||
|
it { should have_mfa_enabled }
|
||
|
end
|
||
|
end
|