Unable to delete subnets in a VPC using boto3

0 votes

I am using the following code for deleting all subnets but am unable to and there are no errors also:

import boto3
ec2 = boto3.resource('ec2')
ec2client = ec2.meta.client
vpc = ec2.Vpc('vpc-01fca2f1bae08f4be')
for subnet in vpc.subnets.all():
    subnet.terminate()

Can someone help me please?

Dec 5, 2018 in AWS by Kanishk
• 890 points
623 views

1 answer to this question.

0 votes

.terminate is used for instances and not subnets.

You can use subnet.delete() instead.

You can use this code:

import boto3
ec2 = boto3.resource('ec2')
ec2client = ec2.meta.client
vpc = ec2.Vpc('vpc-01250c74f7a4d1236')
for subnet in vpc.subnets.all():
    subnet.delete()

Hope this helps.

answered Dec 5, 2018 by Shuvodip Ghosh

Related Questions In AWS

0 votes
1 answer

How to create subnets in a vpc using boto3?

Here is the simple way of implementing ...READ MORE

answered Dec 5, 2018 in AWS by Shuvodip Ghosh
4,054 views
0 votes
1 answer

How to delete all the subnets from a VPC using boto3?

You can refer to this question here: https://www.edureka.co/community/32182/unable-to-delete-subnets-in-a-vpc-using-boto3 You ...READ MORE

answered Dec 5, 2018 in AWS by Shuvodip Ghosh
1,537 views
0 votes
1 answer
0 votes
1 answer

Getting error while deleting my VPC.

This is the code to delete the ...READ MORE

answered Dec 4, 2018 in AWS by Shuvodip Ghosh
955 views
0 votes
1 answer

How to delete a VPC using boto3?

You can view this answer here : https://www.edureka.co/community/32160/getting-error-while-deleting-my-vpc Before ...READ MORE

answered Dec 4, 2018 in AWS by Shuvodip Ghosh
2,438 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP