inspec/docs/resources/aws_iam_root_user.md
kagarmoe c741e51484 AWS resource edits
Signed-off-by: kagarmoe <kgarmoe@chef.io>
2018-02-13 17:44:01 -08:00

1.5 KiB

title platform
About the aws_iam_root_user Resource aws

aws_iam_root_user

Use the aws_iam_root_user InSpec audit resource to test properties of the root user (owner of the account).

To test properties of all or multiple users, use the aws_iam_users resource.

To test properties of a specific AWS user use the aws_iam_user resource.


Syntax

An aws_iam_root_user resource block requires no parameters but has several matchers

describe aws_iam_root_user do
  its { should have_mfa_enabled }
end

Examples

The following examples show how to use this InSpec audit resource.

Test that the AWS root account has at-least one access key

describe aws_iam_root_user do
  it { should have_access_key }
end

Test that the AWS root account has Multi-Factor Authentication enabled

describe aws_iam_root_user do
  it { should have_mfa_enabled }
end

Matchers

This InSpec audit resource has the following special matchers. For a full list of available matchers please visit our matchers page.

have_mfa_enabled

The have_mfa_enabled matcher tests if the AWS root user has Multi-Factor Authentication enabled, requiring them to enter a secondary code when they login to the web console.

it { should have_mfa_enabled }

have_access_key

The have_access_key matcher tests if the AWS root user has at least one access key.

it { should have_access_key }