mirror of
https://github.com/inspec/inspec
synced 2024-11-15 09:27:20 +00:00
2857d07151
The opening and closing mechanic varied between all the various resources. This changes them all to use a HEREDOC with a tilde to remove leading whitespace. This removes the need for the special method to trim the `#print_example` method from shell. Signed-off-by: Franklin Webber <franklin.webber@gmail.com>
51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
class AwsIamGroups < Inspec.resource(1)
|
|
name 'aws_iam_groups'
|
|
desc 'Verifies settings for AWS IAM groups in bulk'
|
|
example <<~EXAMPLE
|
|
describe aws_iam_groups do
|
|
it { should exist }
|
|
end
|
|
EXAMPLE
|
|
supports platform: 'aws'
|
|
|
|
include AwsPluralResourceMixin
|
|
|
|
def validate_params(resource_params)
|
|
unless resource_params.empty?
|
|
raise ArgumentError, 'aws_iam_groups does not accept resource parameters.'
|
|
end
|
|
resource_params
|
|
end
|
|
|
|
# Underlying FilterTable implementation.
|
|
filter = FilterTable.create
|
|
filter.register_column(:group_names, field: :group_name)
|
|
filter.install_filter_methods_on_resource(self, :table)
|
|
|
|
def to_s
|
|
'IAM Groups'
|
|
end
|
|
|
|
def fetch_from_api
|
|
backend = BackendFactory.create(inspec_runner)
|
|
@table = []
|
|
pagination_opts = {}
|
|
loop do
|
|
api_result = backend.list_groups(pagination_opts)
|
|
@table += api_result.groups.map(&:to_h)
|
|
pagination_opts = { marker: api_result.marker }
|
|
break unless api_result.is_truncated
|
|
end
|
|
end
|
|
|
|
class Backend
|
|
class AwsClientApi < AwsBackendBase
|
|
BackendFactory.set_default_backend(self)
|
|
self.aws_client_class = Aws::IAM::Client
|
|
|
|
def list_groups(query = {})
|
|
aws_service_client.list_groups(query)
|
|
end
|
|
end
|
|
end
|
|
end
|