inspec/lib/resources/aws/aws_s3_buckets.rb
Clinton Wolfe 8683c54510 Update core resources with filtertable API changes (#3117)
* Search and replace filtertable methods to use new names, and rely on automatic methods
* Remove spurious exists? matchers - see https://relishapp.com/rspec/rspec-expectations/docs/built-in-matchers/exist-matcher
* Revert removing exists? - we'll do it on a separate PR
* Gah, didn't save before resolving conflict
* Add back name column on aws cloudtrail trails

Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
2018-06-26 15:14:21 -04:00

49 lines
1.2 KiB
Ruby

# author: Matthew Dromazos
# author: Sam Cornwell
class AwsS3Buckets < Inspec.resource(1)
name 'aws_s3_buckets'
desc 'Verifies settings for AWS S3 Buckets in bulk'
example "
describe aws_s3_bucket do
its('bucket_names') { should eq ['my_bucket'] }
end
"
supports platform: 'aws'
include AwsPluralResourceMixin
# Underlying FilterTable implementation.
filter = FilterTable.create
filter.register_custom_matcher(:exists?) { |x| !x.entries.empty? }
filter.register_column(:bucket_names, field: :name)
filter.install_filter_methods_on_resource(self, :table)
def to_s
'S3 Buckets'
end
def validate_params(resource_params)
unless resource_params.empty?
raise ArgumentError, 'aws_s3_buckets does not accept resource parameters.'
end
resource_params
end
private
def fetch_from_api
backend = BackendFactory.create(inspec_runner)
@table = backend.list_buckets.buckets.map(&:to_h)
end
class Backend
class AwsClientApi < AwsBackendBase
BackendFactory.set_default_backend self
self.aws_client_class = Aws::S3::Client
def list_buckets
aws_service_client.list_buckets
end
end
end
end