uninstall_vpc.yml 939 B

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: Fetch the VPC for the vpc.id
  3. ec2_vpc_net_facts:
  4. region: "{{ openshift_aws_region }}"
  5. filters:
  6. "tag:Name": "{{ openshift_aws_clusterid }}"
  7. register: vpcout
  8. - debug:
  9. var: vpcout
  10. verbosity: 1
  11. - when: vpcout.vpcs | length > 0
  12. block:
  13. - name: delete the vpc igw
  14. ec2_vpc_igw:
  15. state: absent
  16. region: "{{ openshift_aws_region }}"
  17. vpc_id: "{{ vpcout.vpcs[0].id }}"
  18. register: igw
  19. - name: delete the vpc subnets
  20. ec2_vpc_subnet:
  21. state: absent
  22. region: "{{ openshift_aws_region }}"
  23. vpc_id: "{{ vpcout.vpcs[0].id }}"
  24. cidr: "{{ item.cidr }}"
  25. az: "{{ item.az }}"
  26. with_items: "{{ openshift_aws_vpc.subnets[openshift_aws_region] }}"
  27. - name: Delete AWS VPC
  28. ec2_vpc_net:
  29. state: absent
  30. region: "{{ openshift_aws_region }}"
  31. name: "{{ openshift_aws_clusterid }}"
  32. cidr_block: "{{ openshift_aws_vpc.cidr }}"
  33. register: vpc