Sha256: 6775bef45ef115f68921e5feb51e5d05cd13601a8af9bd948cf3b5d1cbcbb11f
Contents?: true
Size: 971 Bytes
Versions: 4
Compression:
Stored size: 971 Bytes
Contents
--- title: About the aws_iam_group Resource platform: aws --- # aws\_iam\_group Use the `aws_iam_group` InSpec audit resource to test properties of a single IAM group. To test properties of multiple or all groups, use the `aws_iam_groups` resource. <br> ## Syntax An `aws_iam_group` resource block identifies a group by group name. # Find a group by group name describe aws_iam_group('mygroup') do it { should exist } end # Hash syntax for group name describe aws_iam_group(group_name: 'mygroup') do it { should exist } end <br> ## Examples The following examples show how to use this InSpec audit resource. As this is the initial release of `aws_iam_group`, its limited functionality precludes examples. <br> ## Matchers ### exists The control will pass if a group with the given group name exists. describe aws_iam_group('mygroup') it { should exist } end
Version data entries
4 entries across 4 versions & 1 rubygems