elb.yml 879 B

1234567891011121314151617181920212223242526
  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: "{{ openshift_aws_elb_scheme }}"
  18. tags: "{{ openshift_aws_elb_tags }}"
  19. register: new_elb
  20. with_dict: "{{ l_elb_dict_item.value }}"
  21. - debug:
  22. msg: "{{ item }}"
  23. with_items:
  24. - "{{ new_elb }}"