terminate.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Populate oo_masters_to_terminate host group if needed
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_host_group_exp if it's set
  7. add_host: "name={{ item }} groups=oo_masters_to_terminate"
  8. with_items: "{{ oo_host_group_exp | default('') }}"
  9. when: oo_host_group_exp is defined
  10. - name: Gather facts for instances to terminate
  11. hosts: oo_masters_to_terminate
  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. # Fail if any of the instances failed to terminate with an error other
  29. # than 403 Forbidden
  30. - fail: msg=Terminating instance {{ item.item.ec2_id }} failed with message {{ item.msg }}
  31. when: "item.failed and not item.msg | search(\"error: EC2ResponseError: 403 Forbidden\")"
  32. with_items: ec2_term.results
  33. - name: Stop instance if termination failed
  34. ec2:
  35. state: stopped
  36. instance_ids: ["{{ item.item.ec2_id }}"]
  37. region: "{{ item.item.ec2_region }}"
  38. register: ec2_stop
  39. when: item.failed
  40. with_items: ec2_term.results
  41. - name: Rename stopped instances
  42. ec2_tag: resource={{ item.item.item.ec2_id }} region={{ item.item.item.ec2_region }} state=present
  43. args:
  44. tags:
  45. Name: "{{ item.item.item.ec2_tag_Name }}-terminate"
  46. with_items: ec2_stop.results