mirror of
https://github.com/inspec/inspec
synced 2024-11-23 13:13:22 +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>
46 lines
1.2 KiB
Ruby
46 lines
1.2 KiB
Ruby
class AwsCloudTrailTrails < Inspec.resource(1)
|
|
name 'aws_cloudtrail_trails'
|
|
desc 'Verifies settings for AWS CloudTrail Trails in bulk'
|
|
example <<~EXAMPLE
|
|
describe aws_cloudtrail_trails do
|
|
it { should exist }
|
|
end
|
|
EXAMPLE
|
|
supports platform: 'aws'
|
|
|
|
include AwsPluralResourceMixin
|
|
|
|
def validate_params(resource_params)
|
|
unless resource_params.empty?
|
|
raise ArgumentError, 'aws_cloudtrail_trails does not accept resource parameters.'
|
|
end
|
|
resource_params
|
|
end
|
|
|
|
# Underlying FilterTable implementation.
|
|
filter = FilterTable.create
|
|
filter.register_custom_matcher(:exists?) { |x| !x.entries.empty? }
|
|
filter.register_column(:trail_arns, field: :trail_arn)
|
|
filter.register_column(:names, field: :name)
|
|
filter.install_filter_methods_on_resource(self, :table)
|
|
|
|
def to_s
|
|
'CloudTrail Trails'
|
|
end
|
|
|
|
def fetch_from_api
|
|
backend = BackendFactory.create(inspec_runner)
|
|
@table = backend.describe_trails({}).to_h[:trail_list]
|
|
end
|
|
|
|
class Backend
|
|
class AwsClientApi < AwsBackendBase
|
|
AwsCloudTrailTrails::BackendFactory.set_default_backend(self)
|
|
self.aws_client_class = Aws::CloudTrail::Client
|
|
|
|
def describe_trails(query)
|
|
aws_service_client.describe_trails(query)
|
|
end
|
|
end
|
|
end
|
|
end
|