mirror of
https://github.com/inspec/inspec
synced 2024-12-21 10:33:23 +00:00
6 lines
201 B
Ruby
6 lines
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
|