How to create an Internet Gateway using Boto3

0 votes

Hi Guys,

I have created one VPC using the Boto3 module. Now I want to create an internet gateway with the help of Boto3. How can I do that?

Oct 9, 2020 in AWS by MD
• 95,440 points
1,130 views

1 answer to this question.

0 votes

Hi@MD,

You can control internet access to the instances in your VPC. If you want to make your EC2 instances available on the internet, then you have to first create an Internet Gateway and then attach it to your VPC. 

# create an internet gateway and attach it to VPC
internetgateway = ec2.create_internet_gateway()
vpc.attach_internet_gateway(InternetGatewayId=internetgateway.id)
answered Oct 10, 2020 by akhtar
• 38,230 points

Related Questions In AWS

0 votes
1 answer
0 votes
1 answer

How to create Internet Gateway using AWS CLI?

It is simple to create an Internet ...READ MORE

answered Feb 21, 2019 in AWS by Priyaj
• 58,090 points
716 views
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

How to create EFS in AWS?

Hi@akhtar, You can follow the below-given steps to ...READ MORE

answered Jun 20, 2020 in AWS by akhtar
• 38,230 points
723 views
0 votes
2 answers

How to rename a S3 bucket name?

Hi, You can rename your S3 bucket name. ...READ MORE

answered Oct 5, 2020 in AWS by akhtar
• 38,230 points
39,678 views
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