Questions tagged [amazon-elb]

ELB is Amazon's managed Load Balancer service, used in conjunction with its EC2 virtual machine cloud hosting service.

552 questions
0
votes
1 answer

Two EKS cluster using the same LoadBalancer

Does anybody know if it is possible (and how) to share the same ELB between two Ingress Controllers on different EKS clusters in the same VPC? I have one cluster EKS cluster already running and I just created a second one. I'd like to use the same…
Jaumzera
  • 103
  • 4
0
votes
1 answer

Can't ping AWS elastic load balancer

I created Load balancer. NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE open-imis-gateway LoadBalancer 172.20.102.239 …
dos4dev
  • 103
  • 3
0
votes
1 answer

Will aws elb address change over time?

I have created a load balancer pointing at my api instances. I got an automatically generated url which looks something like this: xxx-xx-xxxxxxxxxx.us-east-2.elb.amazonaws.com I want to connect it to my own domain name via cname, but before doing…
0
votes
1 answer

How to connect cloudfront and alb?

I am trying to connect to ec2 through ALB through Cloudfront. Currently, the ALB already has one listener associated with cloudfront. So I set a listener with a different port as the origin and set the path to the behavior. However, when connecting…
0
votes
0 answers

Elastic Beanstalk 1 ELB for multiple website and domain

Can I use 1 Elastic Beanstalk to manage multiple website with different domain? How to do that?
Sinauwae
  • 23
  • 6
0
votes
0 answers

Why does ASG for Target Group keep adding Targets with port 80 when all I have are containers with Dynamic Mapping? (ECS running Rails app)

Current setup is a Target Group with an Auto Scaling Group providing the instances for an ELB (Application Type). This strange behavior is happening, as soon an instance is added, it has this port 80; whereas all the containers are using dynamic…
TechOcean201
  • 101
  • 2
0
votes
0 answers

Configure AWS VPN with security rules for internal load balancer

currently we have an AWS client vpn setup to give users access to our VPC. We are using active directory groups to allow certain users access to ip ranges. However, we would like to allow some users to only access an internal load balancer we have…
0
votes
1 answer

How to redirect/block IP access to Nginx

I am hosting a Website on some EC2 Instances behind an Elastic Load Balancer. The Website can be reached via the public IP of the Load Balancer. This public IP is changing frequently so I have to redirect/block it. For redirecting any access from…
0
votes
0 answers

Nginx revers proxy getting timeout error issue

I have an AWS elb loadbalancer with three dynamic IPs and domain- example.com, port 443. our client wants to access API but he had outbound firewall rules which required to whitelist dynamic IPs every time. for the resolution, we created a subdomain…
0
votes
1 answer

How can I find out why AWS ELB believes my service is failing?

I have a service which is registered with two target groups : alb and wwwalb. The alb target group is for internal requests, and the wwwalb target group is for external requests. When I deploy my service, it starts up as it should and starts…
sbrattla
  • 1,578
  • 4
  • 28
  • 52
0
votes
1 answer

Is a NAT gateway used when traffic travels over a public application load balancer?

I'm working on the following AWS setup : [public application load balancer] -> [fargate service on private subnet w/NAT gateway] The application load balancer is associated with all three private subnets. My understanding is that the NAT gateway…
sbrattla
  • 1,578
  • 4
  • 28
  • 52
0
votes
1 answer

AWS Fargate Load Balancer timing out

I'm setting up an AWS ECS/Fargate cluster/service/task with a load balancer for the first time. I believe the task is good since I can go to the task's (public) IP directly in a browser and see the application. I set up an application load balancer…
0
votes
1 answer

block public access to the AWS Elastic Beanstalk URL

I have a node.js app running on AWS Elastic Beanstalk. I have setup a domain pointing to a CDN distribution which is pointing to the EBS. But the web app is also accessible via the EBS URL directly. I want to block public access to the EBS URL. how…
0
votes
0 answers

Apache/AWS: How to identify local instance requests from the same VPC

In this configuration the apache server instances are all in the same VPC (across several subnets) and all incoming requests are managed via an elastic load balancer, (with ProxyProtocol=On on each instance). These instances serve 40+ websites in…
0
votes
1 answer

Secure websocket connection to server running on EC2 fails

I have a node.js websocket server running on an EC2 instance on port 8080. Normal websocket connections (ws://) work fine but when I'm trying to make a secure connection (wss://), the websocket connection fails. I realise that wss requests are sent…