Sha256: 65b8d52698bcedf2c54f330801608f8fe925f3976b74bb18f894d2e2baf05213

Contents?: true

Size: 1.24 KB

Versions: 37

Compression:

Stored size: 1.24 KB

Contents

class AwsIamGroups < Inspec.resource(1)
  name 'aws_iam_groups'
  desc 'Verifies settings for AWS IAM groups in bulk'
  example '
    describe aws_iam_groups do
      it { should exist }
    end
  '
  supports platform: 'aws'

  include AwsPluralResourceMixin

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

  # Underlying FilterTable implementation.
  filter = FilterTable.create
  filter.register_column(:group_names, field: :group_name)
  filter.install_filter_methods_on_resource(self, :table)

  def to_s
    'IAM Groups'
  end

  def fetch_from_api
    backend = BackendFactory.create(inspec_runner)
    @table = []
    pagination_opts = {}
    loop do
      api_result = backend.list_groups(pagination_opts)
      @table += api_result.groups.map(&:to_h)
      pagination_opts = { marker: api_result.marker }
      break unless api_result.is_truncated
    end
  end

  class Backend
    class AwsClientApi < AwsBackendBase
      BackendFactory.set_default_backend(self)
      self.aws_client_class = Aws::IAM::Client

      def list_groups(query = {})
        aws_service_client.list_groups(query)
      end
    end
  end
end

Version data entries

37 entries across 37 versions & 1 rubygems

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