terminate.yml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. - name: Terminate instance(s)
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  10. - set_fact: scratch_group=tag_env_{{ cluster_id }}
  11. - add_host:
  12. name: "{{ item }}"
  13. groups: oo_hosts_to_terminate
  14. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  15. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  16. with_items: groups[scratch_group] | default([]) | difference(['localhost'])
  17. - name: Unsubscribe VMs
  18. hosts: oo_hosts_to_terminate
  19. roles:
  20. - role: rhel_unsubscribe
  21. when: deployment_type == "enterprise" and
  22. ansible_distribution == "RedHat" and
  23. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  24. default('no', True) | lower in ['no', 'false']
  25. - name: Terminate instances
  26. hosts: localhost
  27. connection: local
  28. become: no
  29. gather_facts: no
  30. vars:
  31. host_vars: "{{ hostvars
  32. | oo_select_keys(groups['oo_hosts_to_terminate']) }}"
  33. tasks:
  34. - name: Remove tags from instances
  35. ec2_tag: resource={{ item.ec2_id }} region={{ item.ec2_region }} state=absent
  36. args:
  37. tags:
  38. env: "{{ item['ec2_tag_env'] }}"
  39. host-type: "{{ item['ec2_tag_host-type'] }}"
  40. env-host-type: "{{ item['ec2_tag_env-host-type'] }}"
  41. sub_host_type: "{{ item['ec2_tag_sub-host-type'] }}"
  42. with_items: host_vars
  43. when: "'oo_hosts_to_terminate' in groups"
  44. - name: Terminate instances
  45. ec2:
  46. state: absent
  47. instance_ids: ["{{ item.ec2_id }}"]
  48. region: "{{ item.ec2_region }}"
  49. ignore_errors: yes
  50. register: ec2_term
  51. with_items: host_vars
  52. when: "'oo_hosts_to_terminate' in groups"
  53. # Fail if any of the instances failed to terminate with an error other
  54. # than 403 Forbidden
  55. - fail: msg=Terminating instance {{ item.ec2_id }} failed with message {{ item.msg }}
  56. when: "'oo_hosts_to_terminate' in groups and item.failed and not item.msg | search(\"error: EC2ResponseError: 403 Forbidden\")"
  57. with_items: ec2_term.results
  58. - name: Stop instance if termination failed
  59. ec2:
  60. state: stopped
  61. instance_ids: ["{{ item.item.ec2_id }}"]
  62. region: "{{ item.item.ec2_region }}"
  63. register: ec2_stop
  64. when: "'oo_hosts_to_terminate' in groups and item.failed"
  65. with_items: ec2_term.results
  66. - name: Rename stopped instances
  67. ec2_tag: resource={{ item.item.item.ec2_id }} region={{ item.item.item.ec2_region }} state=present
  68. args:
  69. tags:
  70. Name: "{{ item.item.item.ec2_tag_Name }}-terminate"
  71. with_items: ec2_stop.results
  72. when: "'oo_hosts_to_terminate' in groups"