security_group_create.yml 828 B

12345678910111213141516171819202122232425
  1. ---
  2. - name: create the node group sgs
  3. ec2_group:
  4. name: "{{ item.value.name}}"
  5. description: "{{ item.value.desc }}"
  6. rules: "{{ item.value.rules if 'rules' in item.value else [] }}"
  7. region: "{{ openshift_aws_region }}"
  8. vpc_id: "{{ vpcout.vpcs[0].id }}"
  9. with_dict: "{{ l_security_groups }}"
  10. - name: create the k8s sgs for the node group
  11. ec2_group:
  12. name: "{{ item.value.name }}_k8s"
  13. description: "{{ item.value.desc }} for k8s"
  14. region: "{{ openshift_aws_region }}"
  15. vpc_id: "{{ vpcout.vpcs[0].id }}"
  16. with_dict: "{{ l_security_groups }}"
  17. register: k8s_sg_create
  18. - name: tag sg groups with proper tags
  19. ec2_tag:
  20. tags: "{{ openshift_aws_security_groups_tags }}"
  21. resource: "{{ item.group_id }}"
  22. region: "{{ openshift_aws_region }}"
  23. with_items: "{{ k8s_sg_create.results }}"