Questions tagged [amazon-vpc]

Amazon Virtual Private Cloud (Amazon VPC) lets you provision a private, isolated section of the Amazon Web Services (AWS) Cloud where you can launch AWS resources in a virtual network that you define. With Amazon VPC, you can define a virtual network topology that closely resembles a traditional network that you might operate in your own datacenter.

Docs

2516 questions
0
votes
0 answers

Issues that are not actually created, after creating aws_vpc with the terraform 'apply' command

I'm a developer studying terraform. I was practicing creating aws-vpc using terraform. Executing the terraform apply command to see a message that the aws_vpc resource was successful However, when checking the aws dashboard, I found an issue that…
mh-k.kor
  • 1
  • 1
0
votes
0 answers

Elastic Beanstalk EC2 give private static ip

I have a Elastic Beanstalk running in a VPC which has access to a 3rd party VPN. The VPN firewall gives access only a single private IP. but every time during a re-deployment the ebs private IP changes in the EC2 instance. is there a way to set a…
0
votes
1 answer

Connecting a MongoDB Atlas cluster to 2 AWS VPCs

I have 2 AWS accounts -- we'll call them AWSDev and AWSProd. I also have 2 MongoDB Atlas clusters under a single MongoDB account. I set up a Peer Connection for AWSProd's default VPC and added an entry into the AWSProd Route Table. Works great. Now…
Ben Zuill-Smith
  • 3,504
  • 3
  • 25
  • 44
0
votes
0 answers

how to access aws rds in eks in same vpc and subnet

I am working on importing data from rds using debezium cdc source connector from eks. rds and eks share same vpc and subnet. And i added the eks security group to rds security group, but it was not connecting. As a test, we added the IP of the pad…
gwkim
  • 13
  • 3
0
votes
1 answer

How to pass variables between Terragrunt workspaces

I'm new to terragrunt and trying to figure how to pass variables between modules. I'm following terragrunt documentation here yet no luck and fails with error: apps tg run-all plan INFO[0000] The stack at /Users/xxx/sri/aws/Infrastructure/apps…
Sri
  • 51
  • 4
0
votes
0 answers

Which AWS service does this IP address range belongs to

We have recently analyzed our AWS data transfers/NAT gateway charges and what we have observed is that we are sending 80% of the traffic to an AMAZON service in this IP address range. { "ip_prefix": "3.237.107.0/25", "region":…
0
votes
0 answers

Restrict AWS API Gateway to AWS Amplify Application

I've set-up an API gateway on AWS and currently plan to host a React application on AWS Amplify. Reading through the documentation I'm left wondering what would be the best practices around restrict traffic through the gateway to only be allowed…
egx
  • 389
  • 2
  • 14
0
votes
0 answers

AWS IPsec Site-to-Site VPN Certificate Authentication - Certificate Request signatures don't match

I am having issues with certificate authentication using AWS Site-to-Site VPN. I created a new VPN connection in AWS using the same configuration that worked for shared secret. However, when I inspect the traffic, the Certificate Request in the…
0
votes
0 answers

Does OpenVPN and Routing Tables Create an Asymmetrical Behaviour?

My setting is quite simple: a raspberry pi (tun0 IP is 172.32.0.130) is connected to aan AWS VPC (172.31.0.0/16) through AWS Client VPN, with an attachment to a public subnet (172.31.32.0/20). There’s an EC2 instance (172.31.37.157) up and running…
Rafa Borges
  • 576
  • 1
  • 7
  • 17
0
votes
1 answer

Unable to connect to my AWS RDS MS SQL SERVER on SMSS on my local laptop

I created a AWS RDS MS SQL Server database and obviously I want to connect to it from my local pc/laptop. I will share screenshots to show my network settings. This is the error: My connectivity & security details: The Inbound rules when clicking…
0
votes
1 answer

How can I allow traffic into an AWS VPC from more than 1000 IPs?

At the time of posting this, there is a hard limit of 1000 inbound rules per VPC in AWS that cannot be increased. It is calculated as such: Inbound or outbound rules per Security Group * Security groups per network interface cannot exceed 1000 So…
Ramin
  • 267
  • 1
  • 4
  • 13
0
votes
0 answers

AWS CDK VPC with 2 subnets running 2 Fargate services

i am having troubles setting up my AWS VPC via cdk. I want to create a VPC with 2 subnets, one public and one private_isolated, with no nat gateways and one internet gateway. In the public i will host my node web server and in the private my java…
0
votes
0 answers

Is it possible to create some kind of virtual private cloud between my AWS apis/lambda and a non-AWS server provider?

Right now I'm using AWS lamba and AWS EC2 and I'm relying on VPC to share data between a lambda function and a server when lambda needs something from the server. With the right settings in Secure Groups the server accepts only requests from that…
0
votes
1 answer

How do I share an RDS database to another VPC without allowing the peered VPC to access everything else in the same subnet?

I have an RDS database in VPC A, that I'd like to share with an EC2 instance in VPC B. How do I do so by giving access specifically ONLY to the database (especially given that RDS doesn't expose a static IP and rather a DNS endpoint)?
mic
  • 4,300
  • 1
  • 19
  • 25
0
votes
1 answer

Execute AWS ECS run-task with network configuration overrides

I'm running a task in AWS ECS using the CLI command run-task. I'm successfully running a task as follows: aws ecs run-task --cluster ${stackName}-cluster \ --task-definition ${stackName}-${tag} \ …
1 2 3
99
100