iam_role.yml 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. #####
  3. # Instance profiles consist of two parts. The first part is creating a role
  4. # in which the instance has access and will use this role's permissions
  5. # to make API calls on his behalf. This role requires a trust policy
  6. # which links a service (ec2) to the role. This states that this role
  7. # has access to make call ec2 API calls.
  8. # See ../files/trustpolicy.json
  9. #
  10. # Currently openshift-node requires
  11. # access to the AWS API to call describeinstances.
  12. # https://bugzilla.redhat.com/show_bug.cgi?id=1510519
  13. #####
  14. - name: Create an iam role
  15. iam_role:
  16. name: "{{ l_node_group_config[openshift_aws_node_group.group].iam_role }}"
  17. assume_role_policy_document: "{{ lookup('file','trustpolicy.json') }}"
  18. state: "{{ openshift_aws_iam_role_state | default('present') }}"
  19. when: l_node_group_config[openshift_aws_node_group.group].iam_role is defined
  20. #####
  21. # The second part of this task file is linking the role to a policy
  22. # that specifies which calls the role can make to the ec2 API.
  23. # Currently all that is required is DescribeInstances.
  24. # See ../files/describeinstances.json
  25. #####
  26. - name: create an iam policy
  27. iam_policy:
  28. iam_type: role
  29. iam_name: "{{ l_node_group_config[openshift_aws_node_group.group].iam_role }}"
  30. policy_json: "{{ l_node_group_config[openshift_aws_node_group.group].policy_json }}"
  31. policy_name: "{{ l_node_group_config[openshift_aws_node_group.group].policy_name }}"
  32. state: "{{ openshift_aws_iam_role_state | default('present') }}"
  33. when: "'iam_role' in l_node_group_config[openshift_aws_node_group.group]"