release-egressips.yml 400 B

1234567891011121314
  1. ---
  2. # Check existing egress IP resources against their respective projects and remove verifiable orphans.
  3. - name: Release existing egressip resources without a matching ICHP project.
  4. hosts: workstation.lab.example.com
  5. gather_subset: min
  6. become: no
  7. tasks:
  8. # Get auth info, and test comms.
  9. - include_role:
  10. name: check-env
  11. - include_role:
  12. name: purge-egress-ips
  13. ...