security_group.yml 501 B

12345678910111213141516
  1. ---
  2. - name: Fetch the VPC for the vpc.id
  3. ec2_vpc_net_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "tag:Name": "{{ openshift_aws_clusterid }}"
  7. register: vpcout
  8. - include_tasks: security_group_create.yml
  9. vars:
  10. l_security_groups: "{{ openshift_aws_node_security_groups }}"
  11. - include_tasks: security_group_create.yml
  12. when: openshift_aws_node_security_groups_extra is defined
  13. vars:
  14. l_security_groups: "{{ openshift_aws_node_security_groups_extra | default({}) }}"