terminate.yml 2.6 KB

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