mirror of
https://github.com/inspec/inspec
synced 2024-11-24 13:43:09 +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>
59 lines
1.5 KiB
Ruby
59 lines
1.5 KiB
Ruby
class AwsRouteTables < Inspec.resource(1)
|
|
name 'aws_route_tables'
|
|
desc 'Verifies settings for AWS Route Tables in bulk'
|
|
example <<~EXAMPLE
|
|
describe aws_route_tables do
|
|
it { should exist }
|
|
end
|
|
EXAMPLE
|
|
supports platform: 'aws'
|
|
|
|
include AwsPluralResourceMixin
|
|
# Underlying FilterTable implementation.
|
|
filter = FilterTable.create
|
|
filter.register_custom_matcher(:exists?) { |x| !x.entries.empty? }
|
|
filter.register_column(:vpc_ids, field: :vpc_id)
|
|
.register_column(:route_table_ids, field: :route_table_id)
|
|
filter.install_filter_methods_on_resource(self, :routes_data)
|
|
|
|
def routes_data
|
|
@table
|
|
end
|
|
|
|
def to_s
|
|
'Route Tables'
|
|
end
|
|
|
|
private
|
|
|
|
def validate_params(raw_criteria)
|
|
unless raw_criteria.is_a? Hash
|
|
raise 'Unrecognized criteria for fetching Route Tables. ' \
|
|
"Use 'criteria: value' format."
|
|
end
|
|
|
|
# No criteria yet
|
|
unless raw_criteria.empty?
|
|
raise ArgumentError, 'aws_route_tables does not currently accept resource parameters.'
|
|
end
|
|
raw_criteria
|
|
end
|
|
|
|
def fetch_from_api
|
|
backend = BackendFactory.create(inspec_runner)
|
|
catch_aws_errors do
|
|
@table = backend.describe_route_tables({}).to_h[:route_tables]
|
|
end
|
|
end
|
|
|
|
class Backend
|
|
class AwsClientApi < AwsBackendBase
|
|
BackendFactory.set_default_backend self
|
|
self.aws_client_class = Aws::EC2::Client
|
|
|
|
def describe_route_tables(query = {})
|
|
aws_service_client.describe_route_tables(query)
|
|
end
|
|
end
|
|
end
|
|
end
|