Sha256: 08fcc194d535dab61dfa3be2bfa4a08bb77ffbb023cfbf40f8f4ccf21eaa0de9
Contents?: true
Size: 560 Bytes
Versions: 25
Compression:
Stored size: 560 Bytes
Contents
### exist ```ruby describe iam_group('my-iam-group') do it { should exist } end ``` ### be_allowed_action ```ruby describe iam_group('my-iam-group') do it { should be_allowed_action('ec2:DescribeInstances') } it { should be_allowed_action('s3:Put*').resource_arn('arn:aws:s3:::my-bucket-name/*') } end ``` ### have_iam_policy ```ruby describe iam_group('my-iam-group') do it { should have_iam_policy('ReadOnlyAccess') } end ``` ### have_iam_user ```ruby describe iam_group('my-iam-group') do it { should have_iam_user('my-iam-user') } end ```
Version data entries
25 entries across 25 versions & 1 rubygems