uninstall_ec2.yml 256 B

12345678910
  1. ---
  2. - name: delete instance(s)
  3. ec2:
  4. instance_ids: "{{ item }}"
  5. region: "{{ openshift_aws_region }}"
  6. state: absent
  7. wait: yes
  8. delay: 3
  9. retries: 3
  10. with_items: "{{ instancesout.instances | list | map(attribute='instance_id') | list }}"