uninstall_security_group.yml 952 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: delete the node group sgs
  3. oo_ec2_group:
  4. state: absent
  5. name: "{{ item.value.name}}"
  6. region: "{{ openshift_aws_region }}"
  7. with_dict: "{{ openshift_aws_node_security_groups }}"
  8. register: sg_delete_result
  9. retries: 20
  10. delay: 10
  11. until: sg_delete_result is succeeded
  12. ignore_errors: yes
  13. - name: check for sg delete error
  14. fail:
  15. msg: "Couldn't delete SGs {{ openshift_aws_node_security_groups }}"
  16. when: sg_delete_result is failed
  17. - name: delete the k8s sgs for the node group
  18. oo_ec2_group:
  19. state: absent
  20. name: "{{ item.value.name }}_k8s"
  21. region: "{{ openshift_aws_region }}"
  22. with_dict: "{{ openshift_aws_node_security_groups }}"
  23. register: sg_delete_result
  24. retries: 20
  25. delay: 10
  26. until: sg_delete_result is succeeded
  27. ignore_errors: yes
  28. - name: check for k8s sg delete error
  29. fail:
  30. msg: "Couldn't delete SGs {{ openshift_aws_node_security_groups }}"
  31. when: sg_delete_result is failed