security_group.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132
  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. - name: create the node group sgs
  9. oo_ec2_group:
  10. name: "{{ item.value.name}}"
  11. description: "{{ item.value.desc }}"
  12. rules: "{{ item.value.rules if 'rules' in item.value else [] }}"
  13. region: "{{ openshift_aws_region }}"
  14. vpc_id: "{{ vpcout.vpcs[0].id }}"
  15. with_dict: "{{ openshift_aws_node_security_groups }}"
  16. - name: create the k8s sgs for the node group
  17. oo_ec2_group:
  18. name: "{{ item.value.name }}_k8s"
  19. description: "{{ item.value.desc }} for k8s"
  20. region: "{{ openshift_aws_region }}"
  21. vpc_id: "{{ vpcout.vpcs[0].id }}"
  22. with_dict: "{{ openshift_aws_node_security_groups }}"
  23. register: k8s_sg_create
  24. - name: tag sg groups with proper tags
  25. ec2_tag:
  26. tags: "{{ openshift_aws_security_groups_tags }}"
  27. resource: "{{ item.group_id }}"
  28. region: "{{ openshift_aws_region }}"
  29. with_items: "{{ k8s_sg_create.results }}"