uninstall_infrastructure.yml 664 B

123456789101112131415161718192021
  1. ---
  2. - name: Deprovision infrastructure
  3. hosts: localhost
  4. tasks:
  5. - name: Alert user to variables needed - clusterid
  6. debug:
  7. msg: "openshift_aws_clusterid={{ openshift_aws_clusterid }}"
  8. - name: Alert user to variables needed - region
  9. debug:
  10. msg: "openshift_aws_region={{ openshift_aws_region }}"
  11. - import_playbook: ../../aws/openshift-cluster/uninstall_elb.yml
  12. - import_playbook: ../../aws/openshift-cluster/uninstall_s3.yml
  13. - import_playbook: ../../aws/openshift-cluster/uninstall_sec_group.yml
  14. - import_playbook: ../../aws/openshift-cluster/uninstall_ssh_keypair.yml
  15. - import_playbook: ../../aws/openshift-cluster/uninstall_vpc.yml