Sha256: d9e36edcbc9af4fe1f2ad0e0e2b8f3972b5e6f1f3ca9a5984101603d5de337ce

Contents?: true

Size: 1.84 KB

Versions: 2

Compression:

Stored size: 1.84 KB

Contents

Aws.config[:iam] = {
  stub_responses: {
    list_users: {
      users: [
        path: '/',
        user_name: 'my-iam-user',
        user_id: 'ABCDEFGHI1234556890',
        arn: 'arn:aws:iam::123456789012:user/my-iam-user',
        create_date: Time.local(2015)
      ]
    },
    list_groups: {
      groups: [
        path: '/',
        group_name: 'my-iam-group',
        group_id: 'GABCDEFGHI123455689',
        arn: 'arn:aws:iam::123456789012:group/my-iam-group',
        create_date: Time.local(2015)
      ]
    },
    list_groups_for_user: {
      groups: [
        {
          path: '/',
          group_name: 'my-iam-group',
          group_id: 'GABCDEFGHI123455689',
          arn: 'arn:aws:iam::123456789012:group/my-iam-group',
          create_date: Time.local(2015)
        }
      ]
    },
    list_attached_group_policies: {
      attached_policies: [
        {
          policy_arn: 'arn:aws:iam::aws:policy/ReadOnlyAccess',
          policy_name: 'ReadOnlyAccess'
        }
      ],
      is_truncated: false,
      marker: nil
    },
    get_group_policy: {
      group_name: 'my-iam-group',
      policy_name: 'InlineEC2FullAccess',
      policy_document: '{"Statement": [{"Action": "ec2:*","Effect": "Allow",' \
                       '"Resource": "*"},{"Effect": "Allow","Action": "elasticloadbalancing:*",' \
                       '"Resource": "*"},{"Effect": "Allow","Action": "cloudwatch:*",' \
                       '"Resource": "*"},{"Effect": "Allow","Action": "autoscaling:*",' \
                       '"Resource": "*"}]}'
    },
    simulate_principal_policy: {
      evaluation_results: [
        {
          eval_action_name: 'ec2:DescribeInstances',
          eval_resource_name: '*',
          eval_decision: 'allowed',
          matched_statements: [
          ]
        }
      ],
      is_truncated: false,
      marker: nil
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
awspec-0.37.1 lib/awspec/stub/iam_group.rb
awspec-0.37.0 lib/awspec/stub/iam_group.rb