terminate.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. - name: Populate oo_masters_to_terminate host group
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_masters_to_terminate
  7. add_host: name={{ item }} groups=oo_masters_to_terminate
  8. with_items: oo_host_group_exp | default([])
  9. - name: Gather dynamic inventory variables for hosts to terminate
  10. hosts: oo_masters_to_terminate
  11. gather_facts: no
  12. - name: Terminate instances
  13. hosts: localhost
  14. connection: local
  15. gather_facts: no
  16. vars:
  17. host_vars: "{{ hostvars
  18. | oo_select_keys(groups['oo_masters_to_terminate']) }}"
  19. tasks:
  20. - name: Terminate instances
  21. ec2:
  22. state: absent
  23. instance_ids: ["{{ item.ec2_id }}"]
  24. region: "{{ item.ec2_region }}"
  25. ignore_errors: yes
  26. register: ec2_term
  27. with_items: host_vars
  28. when: "'oo_masters_to_terminate' in groups"
  29. # Fail if any of the instances failed to terminate with an error other
  30. # than 403 Forbidden
  31. - fail: msg=Terminating instance {{ item.item.ec2_id }} failed with message {{ item.msg }}
  32. when: "'oo_masters_to_terminate' in groups and item.failed and not item.msg | search(\"error: EC2ResponseError: 403 Forbidden\")"
  33. with_items: ec2_term.results
  34. - name: Stop instance if termination failed
  35. ec2:
  36. state: stopped
  37. instance_ids: ["{{ item.item.ec2_id }}"]
  38. region: "{{ item.item.ec2_region }}"
  39. register: ec2_stop
  40. when: item.failed
  41. with_items: ec2_term.results
  42. when: "'oo_masters_to_terminate' in groups"
  43. - name: Rename stopped instances
  44. ec2_tag: resource={{ item.item.item.ec2_id }} region={{ item.item.item.ec2_region }} state=present
  45. args:
  46. tags:
  47. Name: "{{ item.item.item.ec2_tag_Name }}-terminate"
  48. with_items: ec2_stop.results
  49. when: "'oo_masters_to_terminate' in groups"