2,688 questions
0
votes
0
answers
22
views
How to attach a VPC to a Lambda through fromFunctionAttributes in CDK?
I manage infrastructure through CDK, except for stuff created by zappa for a Django application.
Now, I need to connect such Lambda to the RDS cluster: following this guide I need to attach the ...
-7
votes
1
answer
46
views
Designing AWS Network infrastructure for web scrapping
I am working on a web scrapping problem where I have to collect text data from the individuals web-pages of over 100K websites. We are hosting the entire infrastructure on AWS.
Current Implemented ...
0
votes
1
answer
48
views
Lambda timing out while connecting to S3 within VPC with Gateway endpoint active
I'm trying to connect from Lambda to S3 within a VPC. Sometimes it works, sometimes it doesn't. An S3 endpoint is made within the VPC and it's working correctly as it sometimes demonstrates.
The weird ...
-1
votes
0
answers
18
views
Error pops up when I manually refresh my tab
Previously I have hosted my website in S3 using Web hosting, problem in s3 webhosting It will be access to the public.
So, I configured VPC endpoint, ALB and with S3
everything works fine all the API ...
1
vote
1
answer
44
views
How to send an email using AWS SES from inside VPC private subnet?
I have a node server running in AWS ECS Fargate inside an isolated subnet.
I have set up the task policy to allow sending emails
resource "aws_iam_role_policy" "ecs_task_ses_policy"...
0
votes
1
answer
25
views
Troubles when connecting with RDS MySQL instance from MySQL workbench
I created this MySQL RDS instance:
With the Connectivity & security section looking like this:
The following inbound rules:
And this routes config:
When I test the connection from MySQL ...
-1
votes
2
answers
34
views
EC2, belongs to public subnet, having internet access issue if no public IP assigned
I have 3 EC2 instances (Amazon-Linux AMI) within same VPC (custom) and same AZ. All using the same security group and same ACL.
"A" & "B" are under public subnet whose route ...
0
votes
2
answers
73
views
How to Access API on Private Subnet from React App through Application Load Balancer in AWS VPC?
Please refer to the VPC design image below.
https://i.sstatic.net/JpZCLQO2.png
I’m working on a React web application hosted on AWS, with the following architecture:
React Web App: Hosted on an EC2 ...
1
vote
2
answers
53
views
how to create awsx.lb.ApplicationLoadBalancer in a non-default VPC?
I am trying to create a load balancer in some specific VPC, for example:
export const vpc = new awsx.ec2.Vpc(
`ls-vpc-${stackName}`,
{
numberOfAvailabilityZones: 2,
cidrBlock: '10.0.0.0/16'...
0
votes
0
answers
63
views
AWS Glue Job in a private VPC
I have a private RDS instance in a private VPC and I want to use a Glue ETL job to extract a table and save it to a private S3 bucket in parquet format.
I’ve successfully connected the job to my RDS ...
1
vote
0
answers
130
views
Why Is S3 Traffic Routing Through NAT Gateway Despite S3 Gateway Endpoint?
Despite configuring both S3 Gateway and ECR Interface Endpoints in my AWS VPC to reduce NAT Gateway costs. I’m still seeing large amounts of traffic from S3 public IP addresses going through the NAT ...
0
votes
1
answer
62
views
Private endpoint cannot use as AWS EventBridge target
I need to call an private endpoint of Springboot application (hosted in EC2) that located in my AWS VPC from an event bridge that also located in same AWS VPC.I already tried to do this using API ...
0
votes
0
answers
55
views
InvalidSubnet.Conflict when Changing Number of Availability Zones in AWS VPC Configuration
I’m working on a Terraform configuration for creating an AWS VPC and subnets, and I'm encountering an error when changing the number of availability zones (AZs) while decreasing or increasing it. The ...
0
votes
0
answers
19
views
not able to create target groups in 2 seperate vpcs in AWS console for AWS networking and load balancing assugnment. suggest
Not able to create target groups in 2 seperate vpc in AWS console. tried creating a ALB and not able top attach target groups in seperate vpc, not able to fetch create target group in vpc.[enter image ...
1
vote
1
answer
140
views
How to Add Private Subnets with Designated IP Addresses When Creating a VPC Interface Endpoint in AWS CDK
I'm trying to create an Interface VPC Endpoint for an existing VPC using AWS CDK. According to the InterfaceVpcEndpointOptions, specifying subnets is optional. By default, the endpoint network ...