mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
2af1535f7c
* Added support for basic AWS EBS volume testing * Fix error in exists matcher * Added EBS resource documentation and requested changes Signed-off-by: James Massardo <jmassardo@chef.io>
63 lines
1.6 KiB
Ruby
63 lines
1.6 KiB
Ruby
class AwsEbsVolumes < Inspec.resource(1)
|
|
name 'aws_ebs_volumes'
|
|
desc 'Verifies settings for AWS EBS Volumes in bulk'
|
|
example '
|
|
describe aws_ebs_volumes do
|
|
it { should exist }
|
|
end
|
|
'
|
|
supports platform: 'aws'
|
|
|
|
include AwsPluralResourceMixin
|
|
def validate_params(resource_params)
|
|
unless resource_params.empty?
|
|
raise ArgumentError, 'aws_ebs_volumes 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(:volume_ids, field: :volume_id)
|
|
filter.install_filter_methods_on_resource(self, :table)
|
|
|
|
def to_s
|
|
'EBS Volumes'
|
|
end
|
|
|
|
def fetch_from_api
|
|
backend = BackendFactory.create(inspec_runner)
|
|
@table = []
|
|
pagination_opts = {}
|
|
loop do
|
|
api_result = backend.describe_volumes(pagination_opts)
|
|
@table += unpack_describe_volumes_response(api_result.volumes)
|
|
break unless api_result.next_token
|
|
pagination_opts = { next_token: api_result.next_token }
|
|
end
|
|
end
|
|
|
|
def unpack_describe_volumes_response(volumes)
|
|
volume_rows = []
|
|
volumes.each do |res|
|
|
volume_rows += res.attachments.map do |volume_struct|
|
|
{
|
|
volume_id: volume_struct.volume_id,
|
|
}
|
|
end
|
|
end
|
|
volume_rows
|
|
end
|
|
|
|
class Backend
|
|
class AwsClientApi < AwsBackendBase
|
|
BackendFactory.set_default_backend(self)
|
|
self.aws_client_class = Aws::EC2::Client
|
|
|
|
def describe_volumes(query)
|
|
aws_service_client.describe_volumes(query)
|
|
end
|
|
end
|
|
end
|
|
end
|