elb.yml 934 B

123456789101112131415161718192021222324252627
  1. ---
  2. - name: "dump the elb listeners for {{ l_elb_dict_item.key }}"
  3. debug:
  4. msg: "{{ l_elb_dict_item.value }}"
  5. - name: "Create ELB {{ l_elb_dict_item.key }}"
  6. ec2_elb_lb:
  7. name: "{{ l_openshift_aws_elb_name_dict[l_elb_dict_item.key][item.key] }}"
  8. state: present
  9. cross_az_load_balancing: "{{ openshift_aws_elb_az_load_balancing }}"
  10. security_group_names: "{{ l_elb_security_groups[l_elb_dict_item.key] }}"
  11. idle_timeout: "{{ openshift_aws_elb_idle_timout }}"
  12. region: "{{ openshift_aws_region }}"
  13. subnets:
  14. - "{{ subnetout.subnets[0].id }}"
  15. health_check: "{{ openshift_aws_elb_health_check }}"
  16. listeners: "{{ item.value }}"
  17. scheme: "{{ (item.key == 'internal') | ternary('internal','internet-facing') }}"
  18. tags: "{{ openshift_aws_elb_tags }}"
  19. wait: True
  20. register: new_elb
  21. with_dict: "{{ l_elb_dict_item.value }}"
  22. - debug:
  23. msg: "{{ item }}"
  24. with_items:
  25. - "{{ new_elb }}"