Questions tagged [aws-application-load-balancer]

1004 questions
0
votes
1 answer

ALB host based routing without domain name

I'm trying to configure host based routing in AWS ALB for ClearML server using this tutorial. However, I don't have a domain name. So can I only use alb's dns for this routing? For example, I will have the address as…
Nghĩa Lê
  • 53
  • 3
0
votes
1 answer

AWS ECS Fargate + Python + Nginx

Hey, I would like to start a small website that will be entirely handled in Python. I will be using the Flask framework for this. So far I had a lot of contact with AWS ECS and ELB service, but I admit, Python itself is still unknown to me. That's…
0
votes
1 answer

Fail deploying simple HTTP server to ElasticBeanstalk when using Application Load Balancer

I'm unable to deploy the simplest docker-compose file to an ElasticBeanstalk environment configured with Application Load Balancer for high-availability. This is the docker file: version: "3.9" services: demo: image: nginxdemos/hello …
0
votes
1 answer

ALB results in 504 gateway time out error with ECS

I have an httpd container with ECS service along with ALB. Container with ALB are using a dynamic port feature which means host port is set to 0. if i try to ssh in an instance container and try to curl localhost:port number it works. But when i try…
0
votes
1 answer

Terraform AWS ALB Module: disable HTTP/2

Following the instruction for alb module of Terraform https://registry.terraform.io/modules/terraform-aws-modules/alb/aws/latest I can't understand how to disable HTTP/2 can you help me?
0
votes
0 answers

How to apply tags to Elastic Beanstalk Application Load Balancer?

I need to apply tags to Elastic Beanstalk Internet facing Application Load Balancers. I do not want to apply the tags to the Elastic Beanstalk Environment. My terraform script can apply settings to the Application Load Balancer using this pattern,…
0
votes
1 answer

How to redirect traffic from one domain to another (e.g. monkey.com ---> ape.com) in AWS

I have looked at documentation on how I can redirect my traffic from one domain to another in AWS but to no avail I am unable to. The way I see the process using AWS is like so: Route 53 ----> S3 ----> CloudFront ----> ALB ---> CloudFront? What I…
0
votes
1 answer

AWS EKS service ingress and ALB --no ADDRESS

I seem to be having an issue with the way my ports are setup on this manifest, which is a simple go app. The app is configured to listen on port 3000. This container runs fine on my local machine (localhost:3000), but I get no ADDRESS when I look at…
0
votes
0 answers

AWS ALB associated with SSL Certificate using MERN Application

Background of the Application I have MERN Stack Application running (where frontend reactJS is running inside NodeJS backend server) The whole application is then wrapped inside Docker Container Then Deployed in AWS ECS EC2 (using single Service &…
0
votes
1 answer

ELB health check hitting wrong endpoint

My .NET Core Elastic beanstalk app is healthy but when i check the logs i see the following: 10.3.12.142 - - [06/Feb/2022:17:54:53 +0000] "GET / HTTP/1.1" 404 0 "-" "ELB-HealthChecker/2.0" "10.3.2.20" 10.3.11.145 - - [06/Feb/2022:17:54:57 +0000]…
0
votes
2 answers

Use Elastic IP for ALB

I have set ALB with fargate, currently I can access to ALB with dns name like this myapp-LoadB-FDEWFSOAQXD4-f18c75dd4249a10d.elb.ap-northeast-1.amazonaws.com However it is said this DNS could be changed. So I want to give this the Elastic IP I have…
whitebear
  • 11,200
  • 24
  • 114
  • 237
0
votes
1 answer

AWS ALB Ingress has no host address and class is empty

I have followed the AWS official document to create an ALB controller and made sure few things like providing aws region and vpc id when creating a controller. https://docs.aws.amazon.com/eks/latest/userguide/alb-ingress.html However I notice the…
0
votes
1 answer

How to create alarm for TargetResponseTime taking more the 30s for period of 5minutes

I want to trigger an alarm when 30% of requests take more than 10s TargetResponseTime within a period of 5minutes in AWS cloud watch
0
votes
1 answer

OneLogin OIDC access and refresh tokens from expired sessions will continue to work (assuming unexpired tokens)?

If an application obtained access or refresh tokens from a OneLogin session that has expired, and if those tokens have not expired, can the application continue using those tokens until they expire, or will user authentication be required to create…
0
votes
2 answers

How we can "aws_alb_target_group.tenant[each.key].arn" declare in terraform output value?

resource "aws_alb_target_group" "test" { for_each = var.microservices name = "${each.key}-tg" port = each.value protocol = "HTTP" vpc_id = var.vpc_id target_type = "ip" health_check { healthy_threshold =…