mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +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>
58 lines
1.3 KiB
Ruby
58 lines
1.3 KiB
Ruby
class AwsIamGroup < Inspec.resource(1)
|
|
name 'aws_iam_group'
|
|
desc 'Verifies settings for AWS IAM Group'
|
|
example <<~EXAMPLE
|
|
describe aws_iam_group('mygroup') do
|
|
it { should exist }
|
|
end
|
|
EXAMPLE
|
|
supports platform: 'aws'
|
|
|
|
include AwsSingularResourceMixin
|
|
attr_reader :group_name, :users
|
|
|
|
def to_s
|
|
"IAM Group #{group_name}"
|
|
end
|
|
|
|
private
|
|
|
|
def validate_params(raw_params)
|
|
validated_params = check_resource_param_names(
|
|
raw_params: raw_params,
|
|
allowed_params: [:group_name],
|
|
allowed_scalar_name: :group_name,
|
|
allowed_scalar_type: String,
|
|
)
|
|
|
|
if validated_params.empty?
|
|
raise ArgumentError, 'You must provide a group_name to aws_iam_group.'
|
|
end
|
|
|
|
validated_params
|
|
end
|
|
|
|
def fetch_from_api
|
|
backend = AwsIamGroup::BackendFactory.create(inspec_runner)
|
|
|
|
begin
|
|
resp = backend.get_group(group_name: group_name)
|
|
@exists = true
|
|
@aws_group_struct = resp[:group]
|
|
@users = resp[:users].map(&:user_name)
|
|
rescue Aws::IAM::Errors::NoSuchEntity
|
|
@exists = false
|
|
end
|
|
end
|
|
|
|
class Backend
|
|
class AwsClientApi < AwsBackendBase
|
|
BackendFactory.set_default_backend(self)
|
|
self.aws_client_class = Aws::IAM::Client
|
|
|
|
def get_group(query)
|
|
aws_service_client.get_group(query)
|
|
end
|
|
end
|
|
end
|
|
end
|