|
| 1 | +#!/bin/bash |
| 2 | + |
| 3 | +if [[ $# -ne 1 ]]; then |
| 4 | + echo " vpcid required for deletion" |
| 5 | + exit 1 |
| 6 | +fi |
| 7 | +export vpc=$1 |
| 8 | + |
| 9 | +echo "Start Deleting VPC: $vpc resource" |
| 10 | + |
| 11 | +# Delete Internet Gateway |
| 12 | +internet_gateways=$(aws ec2 describe-internet-gateways \ |
| 13 | + --filters Name=attachment.vpc-id,Values=$vpc \ |
| 14 | + --query "InternetGateways[].InternetGatewayId" \ |
| 15 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 16 | + |
| 17 | +for igw in $internet_gateways; do |
| 18 | + aws ec2 detach-internet-gateway --internet-gateway-id "$igw" --vpc-id "$vpc" |
| 19 | + aws ec2 delete-internet-gateway --internet-gateway-id "$igw" |
| 20 | +done |
| 21 | + |
| 22 | +# Delete NAT Gateways |
| 23 | +nat_gateways=$(aws ec2 describe-nat-gateways \ |
| 24 | + --filter Name=vpc-id,Values=$vpc \ |
| 25 | + --query "NatGateways[].NatGatewayId" \ |
| 26 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 27 | +for ngw in $nat_gateways; do |
| 28 | + aws ec2 delete-nat-gateway --nat-gateway-id "$ngw" |
| 29 | +done |
| 30 | + |
| 31 | +# Delete Elastic IPs |
| 32 | +eips=$(aws ec2 describe-addresses \ |
| 33 | + --filters Name=domain,Values=vpc \ |
| 34 | + --query "Addresses[].[AllocationId,Association.VpcId]" \ |
| 35 | + --output text | grep "$vpc" | awk '{print $1}' | tr -d '\r' | tr '\n' ' ') |
| 36 | +for eip in $eips; do |
| 37 | + aws ec2 release-address --allocation-id "$eip" |
| 38 | +done |
| 39 | + |
| 40 | +# Detach and Delete Security Groups |
| 41 | +security_groups=$(aws ec2 describe-security-groups \ |
| 42 | + --filters Name=vpc-id,Values=$vpc \ |
| 43 | + --query "SecurityGroups[?GroupName!='default'].GroupId" \ |
| 44 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 45 | +for sg in $security_groups; do |
| 46 | + enis=$(aws ec2 describe-network-interfaces \ |
| 47 | + --filters Name=group-id,Values=$sg \ |
| 48 | + --query "NetworkInterfaces[].NetworkInterfaceId" \ |
| 49 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 50 | + for eni in $enis; do |
| 51 | + aws ec2 modify-network-interface-attribute \ |
| 52 | + --network-interface-id "$eni" \ |
| 53 | + --groups "$(aws ec2 describe-security-groups \ |
| 54 | + --query 'SecurityGroups[?GroupName==`default`].GroupId' \ |
| 55 | + --output text)" |
| 56 | + done |
| 57 | + aws ec2 delete-security-group --group-id "$sg" |
| 58 | +done |
| 59 | + |
| 60 | +# Delete Route Tables , do not delete Main route table |
| 61 | +route_tables=$(aws ec2 describe-route-tables \ |
| 62 | + --filters Name=vpc-id,Values=$vpc \ |
| 63 | + --query "RouteTables[?Associations[?Main==false]].RouteTableId" \ |
| 64 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 65 | +for rt in $route_tables; do |
| 66 | + associations=$(aws ec2 describe-route-tables \ |
| 67 | + --route-table-ids "$rt" \ |
| 68 | + --query "RouteTables[0].Associations[].RouteTableAssociationId" \ |
| 69 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 70 | + |
| 71 | + for assoc in $associations; do |
| 72 | + aws ec2 disassociate-route-table --association-id "$assoc" |
| 73 | + done |
| 74 | + aws ec2 delete-route-table --route-table-id "$rt" |
| 75 | +done |
| 76 | + |
| 77 | +# Delete Subnets |
| 78 | +subnets=$(aws ec2 describe-subnets \ |
| 79 | + --filters Name=vpc-id,Values=$vpc \ |
| 80 | + --query "Subnets[].SubnetId" \ |
| 81 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 82 | + |
| 83 | +for subnet in $subnets; do |
| 84 | + aws ec2 delete-subnet --subnet-id "$subnet" |
| 85 | +done |
| 86 | + |
| 87 | +# Delete Network Interfaces |
| 88 | +eni_ids=$(aws ec2 describe-network-interfaces \ |
| 89 | + --filters Name=vpc-id,Values=$vpc \ |
| 90 | + --query "NetworkInterfaces[].NetworkInterfaceId" \ |
| 91 | + --output text | tr -d '\r' | tr '\n' ' ') |
| 92 | +for eni in $eni_ids; do |
| 93 | + aws ec2 delete-network-interface --network-interface-id "$eni" |
| 94 | +done |
| 95 | + |
| 96 | +echo "All resource Deleted for VPC: $vpc , now delete vpc" |
| 97 | + |
| 98 | +attempts=0 |
| 99 | +# try 3 times with 5 minutes interval |
| 100 | +while [ $attempts -lt 3 ]; do |
| 101 | + echo "Attempting to delete VPC: $vpc (Attempt $((attempts+1)))" |
| 102 | + if aws ec2 delete-vpc --vpc-id $vpc; then |
| 103 | + echo "Successfully deleted VPC: $vpc" |
| 104 | + break |
| 105 | + else |
| 106 | + attempts=$((attempts + 1)) |
| 107 | + if [ $attempts -lt 3 ]; then |
| 108 | + echo "Failed to delete VPC: $vpc. Retrying in 30 seconds..." |
| 109 | + sleep 30 |
| 110 | + fi |
| 111 | + fi |
| 112 | +done |
| 113 | + |
| 114 | +if [ $attempts -eq 3 ]; then |
| 115 | + echo "Failed to delete VPC: $vpc after 3 attempts. Skipping." |
| 116 | + exit 1 |
| 117 | +fi |
0 commit comments