inspec/test/integration/verify/controls/aws_iam_role.rb
Clinton Wolfe e5dc4a1c29
Add skeleton of aws_iam_role
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2017-12-13 22:34:52 -05:00

6 lines
No EOL
201 B
Ruby

control 'AWS IAM Role search for default AWS role' do
# Every AWS account comes with this one by default
describe aws_iam_role('AWSServiceRoleForOrganizations') do
it { should exist }
end
end