Sha256: 1fd386a58429ede00a2ef023532f0a17c8c8f2f2ad717fa63979846a1a5ca9d4

Contents?: true

Size: 1.39 KB

Versions: 37

Compression:

Stored size: 1.39 KB

Contents

class AwsSnsTopics < Inspec.resource(1)
  name 'aws_sns_topics'
  desc 'Verifies settings for SNS Topics in bulk'
  example "
    describe aws_sns_topics do
      its('topic_arns') { should include '' }
    end
  "
  supports platform: 'aws'

  include AwsPluralResourceMixin

  def validate_params(resource_params)
    unless resource_params.empty?
      raise ArgumentError, 'aws_sns_topics does not accept resource parameters.'
    end
    resource_params
  end

  def fetch_from_api
    backend = BackendFactory.create(inspec_runner)
    @table = []
    pagination_opts = nil
    catch_aws_errors do
      loop do
        api_result = backend.list_topics(pagination_opts)
        @table += api_result.topics.map(&:to_h)
        break if api_result.next_token.nil?
        pagination_opts = { next_token: api_result.next_token }
      end
    end
  end

  # Underlying FilterTable implementation.
  filter = FilterTable.create
  filter.register_custom_matcher(:exists?) { |x| !x.entries.empty? }
  filter.register_column(:topic_arns, field: :topic_arn)
  filter.install_filter_methods_on_resource(self, :table)

  def to_s
    'EC2 SNS Topics'
  end

  class Backend
    class AwsClientApi < AwsBackendBase
      BackendFactory.set_default_backend self
      self.aws_client_class = Aws::SNS::Client

      def list_topics(pagination_opts)
        aws_service_client.list_topics(pagination_opts)
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

Version Path
inspec-3.7.1 lib/resources/aws/aws_sns_topics.rb
inspec-3.6.6 lib/resources/aws/aws_sns_topics.rb
inspec-3.6.4 lib/resources/aws/aws_sns_topics.rb
inspec-2.3.28 lib/resources/aws/aws_sns_topics.rb
inspec-3.6.2 lib/resources/aws/aws_sns_topics.rb
inspec-3.5.0 lib/resources/aws/aws_sns_topics.rb
inspec-3.4.1 lib/resources/aws/aws_sns_topics.rb
inspec-3.3.14 lib/resources/aws/aws_sns_topics.rb
inspec-3.2.6 lib/resources/aws/aws_sns_topics.rb
inspec-3.1.3 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.64 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.61 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.52 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.46 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.25 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.12 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.9 lib/resources/aws/aws_sns_topics.rb
inspec-3.0.0 lib/resources/aws/aws_sns_topics.rb
inspec-2.3.24 lib/resources/aws/aws_sns_topics.rb
inspec-2.3.23 lib/resources/aws/aws_sns_topics.rb