mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
0df67fc7d0
* Initial commit of skeletal resource aws_s3_buckets * Add fixes to documents * Removes property 'creation_date' for there is no use case as of right now * Rebases on master and moves aws_s3_buckets integration test to the correct location * Adds test on unit test for false exists Signed-off-by: Matthew Dromazos <dromazmj@dukes.jmu.edu>
51 lines
1.2 KiB
Ruby
51 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.add_accessor(:where)
|
|
.add_accessor(:entries)
|
|
.add(:exists?) { |x| !x.entries.empty? }
|
|
.add(:bucket_names, field: :name)
|
|
filter.connect(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
|