Questions tagged [aws-route-table]
18 questions
4
votes
2 answers
AWS CodeBuild Fails on DOWNLOAD_SOURCE - CLIENT_ERROR
I am now getting a Failure for CodeBuild on the DOWNLOAD_SOURCE phase.
CLIENT_ERROR: RequestError: send request failed caused by: Get "https://codepipeline-us-east-1-215861945190.s3.amazonaws.com/diag-upload-pipe/SourceArti/jiUJWyf": dial tcp…

Heats
- 123
- 1
- 3
- 10
2
votes
1 answer
How to transfer the packets through NAT gateway instead of public IP?
Using AWS services - I have used VPC and divided it into two subnets(private and public), then created two route tables(private and public), created one Internet gateway and attached to the public route table and one NAT Gateway connected to the…

sakshi singhal
- 101
- 2
- 9
1
vote
1 answer
How to create route53 record for AWS Gateway API
I have existing hosted zone and A record in AWS route 53. The A record is pointing to cloudfront distribution.
lets say the hosted zone name is abcd.ci.example.io. The A record name is same as hosted zone. I can access the web site at…

LP13
- 30,567
- 53
- 217
- 400
1
vote
1 answer
How to deal in AWS routing if we need to use a loopback interface in a EC2 instance
I am relatively new in AWS. I am trying some thing basic like this:
One Ubuntu instance is connected with a vSRX instance. Say Ubuntu instance eth1 ip is like 20.0.0.100 and vSRX corresponding interface ip is 20.0.0.101. Now I want to configure a…

Manas Pal
- 23
- 3
1
vote
2 answers
How to retrieve multiple endpoints using data "aws_vpc_endpoint" resource?
Error: “multiple VPC Endpoints matched”
I am using a data “aws_vpc_endpoint” to retrieve multiple endpoint IDs based on the vpc ID. How can I retrieve these endpoints to reference them in another resource? Or is it possible to retrieve multiple…

mp7
- 15
- 4
1
vote
1 answer
Problems in creating aws route table using terraform
Running terraform v1.0.9 with AWS plugin v3.63.0 on a mac
Following hashicorp instructions for creating a route table (https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route_table), but getting the following error:
Error:…

Y Pant
- 53
- 7
1
vote
3 answers
AWS: Public subnet + VPN gateway
Question
Can we make a route table which has both igw-id (Internet gateway ID) and vgw-id (VPN gateway ID)? If we can't/shouldn't do it, why?
Example
10.0.0.0/16 --> Local
172.16.0.0/12 --> vgw-id
0.0.0.0/0 --> igw-id…

dmjy
- 1,183
- 3
- 10
- 26
0
votes
0 answers
How to send a request from private subnet to public subnet EC2 VPC
I am getting a Error: connect ETIMEDOUT when I try to make an axios post request from a private subnet to a public subnet.
My setup in AWS is that I have one VPC with
private subnet with EC2 instance: (A node.js express app)
public subnet with EC2…
0
votes
1 answer
How to launch multiple AWS EC2 instances from a single VPC using Terraform?
Is it possible to launch multiple ec2 instances from terraform using a single VPC? I'm building something which requires multiple instances to be launched from the same region and I'm doing all this using Terraform. But there's a limit in AWS VPC:…

kiran pradeep
- 19
- 3
0
votes
0 answers
How to establish VPC peering from a VPC (VPC A) to two other VPC (VPC B and C) having the same CIDR range?
I have a VPC A(say 192.168.0.0/22) and VPC B and C having CIDRs 10.0.0.0/16. A VPC peering from A to B already exists (say pcx 1). And have to establish another VPC peering from A to C (say pcx 2). In Order to do that I attached another CIDR block…

unemployedTeeth
- 43
- 5
0
votes
0 answers
how to add multiple aws routes to multiple aws route tables
To avoid creating multiple aws_route resources. I am trying to add multiple destination_cidr_block from a map to multiple route tables. I think I am in the right direction, however, it is only adding a few cidr blocks from the list to each route…

mp7
- 15
- 4
0
votes
1 answer
Weird behavior on AWS Client VPN endpoint access through Peered VPC
I've got a main AWS account where I have a VPC(VPC-A) and a Client VPN Endpoint configured.
I have another account where I have a Dev environment and a VPC(VPC-B) configured over there.
I have setup the VPC peering between VPC-A and VPC-B and it's…

egib
- 31
- 6
0
votes
1 answer
AWS Route Table config for public facing web server
Say my app backend on AWS consists of:
a VPC containing a public subnet and an internet gateway
In the subnet is a single EC2 instance running a web server
an RDS MySQL DB (running on port 3306)
I understand that I will need to configure the…

hotmeatballsoup
- 385
- 6
- 58
- 136
0
votes
1 answer
Can't connect to AWS SMTP from Cloud9 box
I have a script that is trying to send an email by connecting to the SMTP server of AWS & sending an email (it is not using the SDK - I didn't write it initially). I have 2 Cloud9 boxes. 1 of these boxes (A) can connect to the SMTP & send emails…

wmash
- 4,032
- 3
- 31
- 69
0
votes
0 answers
Routes in VPC (AWS). The error: the packet's destination address matches a more specific route
I am trying to describe VPC using terraform, like this article
https://networkfirewall.workshop.aws/setup/distributedmodel.html
# VPC
resource "aws_vpc" "eu-central-1" {
cidr_block = "10.11.0.0/16"
}
resource "aws_subnet" "private_a" {
vpc_id …

Roman
- 1