diff options
Diffstat (limited to 'playbooks/gce/os3-master')
| -rw-r--r-- | playbooks/gce/os3-master/terminate.yml | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/playbooks/gce/os3-master/terminate.yml b/playbooks/gce/os3-master/terminate.yml new file mode 100644 index 000000000..8a618ecb8 --- /dev/null +++ b/playbooks/gce/os3-master/terminate.yml @@ -0,0 +1,18 @@ +- name: "populate oo_hosts_to_terminate host group if needed" +  hosts: localhost +  gather_facts: no +  tasks: +  - name: Evaluate oo_host_group_exp if it's set +    add_host: "name={{ item }} groups=oo_hosts_to_terminate" +    with_items: "{{ oo_host_group_exp | default('') }}" +    when: oo_host_group_exp is defined + +- name: "Terminate instances" +  hosts: localhost +  connection: local +  tasks: +    - name: Terminate master instances +      local_action: +        module: gce +        state: 'absent' +        instance_names: "{{ oo_hosts_to_terminate }}" | 
