elb_single.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. - name: "dump the elb listeners for {{ item.key }}"
  3. debug:
  4. msg: "{{ item.value }}"
  5. verbosity: 1
  6. - name: "Create ELB {{ item.value.name }}"
  7. ec2_elb_lb:
  8. name: "{{ item.value.name }}"
  9. state: present
  10. cross_az_load_balancing: "{{ item.value.cross_az_load_balancing }}"
  11. security_group_names: "{{ l_elb_security_groups[l_elb_dict_item.key] }}"
  12. idle_timeout: "{{ item.value.idle_timeout }}"
  13. region: "{{ openshift_aws_region }}"
  14. subnets:
  15. - "{{ subnetout.subnets[0].id }}"
  16. health_check: "{{ item.value.health_check }}"
  17. instance_ids: "{{ item.value.instance_ids | default(omit) }}"
  18. listeners: "{{ item.value.listeners }}"
  19. scheme: "{{ (item.key == 'internal') | ternary('internal','internet-facing') }}"
  20. tags: "{{ item.value.tags }}"
  21. wait: True
  22. register: new_elb
  23. retries: 20
  24. delay: 5
  25. until: new_elb is succeeded
  26. ignore_errors: yes
  27. - fail:
  28. msg: "couldn't create ELB {{ item.value.name }}"
  29. when: new_elb is failed
  30. - debug:
  31. msg: "{{ new_elb }}"
  32. verbosity: 1