iam_role.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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: "{{ item.value.iam_role }}"
  17. assume_role_policy_document: "{{ lookup('file','trustpolicy.json') }}"
  18. state: "{{ openshift_aws_iam_role_state | default('present') }}"
  19. when: item.value.iam_role is defined
  20. with_dict: "{{ l_nodes_to_build }}"
  21. #####
  22. # The second part of this task file is linking the role to a policy
  23. # that specifies which calls the role can make to the ec2 API.
  24. # Currently all that is required is DescribeInstances.
  25. # See ../files/describeinstances.json
  26. #####
  27. - name: create an iam policy
  28. iam_policy:
  29. iam_type: role
  30. iam_name: "{{ item.value.iam_role }}"
  31. policy_json: "{{ item.value.policy_json }}"
  32. policy_name: "{{ item.value.policy_name }}"
  33. state: "{{ openshift_aws_iam_role_state | default('present') }}"
  34. when: item.value.iam_role is defined
  35. with_dict: "{{ l_nodes_to_build }}"