Questions tagged [aws-application-load-balancer]
1004 questions
0
votes
1 answer
Access to fetch at has been blocked by CORS policy while accessing from another subdomain
I have been getting below errors while trying to access graphql url from https://subdomain-b.abc.com/ service.
POST https://subdomain-a.abc.com/graphql 504
Access to fetch at 'https://subdomain-a.abc.com/graphql' from origin…

Dev3100
- 83
- 1
- 9
0
votes
0 answers
Connecting to Apache web Server in Auto Scaling group
Deploying Apache web Server via AWS - Which EC2 instance should I connect to after creating Auto-Scaling group?
I am trying to install Apache Web server in Multi Availability. I need to test the server by implementing a simple html file and having…

codingbeginner123
- 15
- 1
- 5
0
votes
1 answer
Is it possible to route rule1 response to rule2 in AWS Application Loadbalancer?
I have an ALB with 2 rules. Rule1 has a target group of lambda which sends some authenticated data as response. I want to send that response to target group of Rule2.
Is it possible?

Prathibha Nag
- 41
- 1
- 8
0
votes
1 answer
Where can I find my AWS Application Load Balancer IP?
I have setup an AWS Network Load Balancer no problem and I have a number of different services running on their assigned ports. This all works perfectly.
Then I was asked to host a number of different node apps on their own ports and are accessed…

chris loughnane
- 2,648
- 4
- 33
- 54
0
votes
1 answer
ALBV2 logging in s3 bucket and enable deletion protection using Troposphere
First : I want to create access for my ALB to store logs in my s3 bucket,
AccessLoggingPolicy=elb.AccessLoggingPolicy(
EmitInterval=5,
Enabled=True,
S3BucketName="logging",
…

Rajat jain
- 1,715
- 3
- 12
- 21
0
votes
1 answer
Drupal 7 non-www to www
I have adjusted the .htaccess file in drupal 7 to forward non www to www domains. When I deploy this to AWS elastic beanstalk (with app load balancer) I get lots of 3xx errors for about 50% of the traffic (I have 2 instances).
Any idea why? Any idea…

Alex
- 96
- 1
- 2
- 7
0
votes
1 answer
Exposing kubernetes app using AWS Elastic LoadBalancer
I created an internal AWS elastic application loadbalancer and in AWS console it shows its state as active.
Note that I created this ALB using a jenkins job and in the job I have specified my AWS EC2 instance server which is configured as my…

Gopi
- 227
- 2
- 10
- 30
0
votes
1 answer
Routing traffic to different microservice running on 3 aws ecs ec2 instance with Application load balancer
I am new to microservice. My team is developing new application and it will have about 20 microservice spreading across 3 aws ecs ec2 instance. Each of this docker containers will be listening on any of the high port (host port) and forward the…

sandeep krishna
- 415
- 2
- 9
- 28
0
votes
1 answer
AWS ALB routing - Requested url not found
I have a Microservice dedicated as the front-end of an admin area of a website. The Microservice has a route dedicated to it, /admin. Which is giving me a 404 error when I'm trying to access. Given below is an extract from the cloud template of the…

Ammar Ameerdeen
- 950
- 3
- 11
- 29
0
votes
1 answer
Angular 6 App with Application Load Balancer
I have an application load balancer (ALB) in AWS for an Angular 6 application. I am experiencing issues when I attempt to access the application through the ALB. I have other applications I can access through the same ALB so I know security groups,…

Jackson
- 6,391
- 6
- 32
- 43
0
votes
2 answers
How to use same application loadbalancer for different elasticbeanstack application environment using cloudformation template?
I am running an application with different services. I have deployed it as a microservice pattern using elastic beanstalk. Each microservice is hosted in a separate elastic beanstalk environment but within the same application.
I have automated the…

Radhakrishnan Rk
- 553
- 3
- 13
-1
votes
1 answer
Cost effectiveness - Amazon Application Load Balancer vs Amazon EKS
At present, we are using Application LoadBalancer with some Ec2 instances at the back. we are getting high charges for ALB usage charges ( around $ 9K) LCU cost. This is high because we have a high volume of requests.
Does replacing the application…

Sunil
- 311
- 1
- 10
-1
votes
1 answer
Output attributes for Multiple ALB using count
I have to created multiple EC2 and ALB using count. ALB was created as follows:
module "ex-alb" {
source = "alb-module/aws"
# Count set to 3
count = var.ex_count
load_balancer_type = "Application"
vpc_id …

V S
- 1
- 1
-1
votes
1 answer
CIDR Address overlaps with existing Subnet CIDR
I am trying to create an application load balancer. To do this, I need two subnets.
The current subnet CIDR block is 172.31.0.0/16. Every time I try to create a new CIDR block for the 2nd subnet, I keep getting this error:
CIDR Address overlaps with…
-1
votes
1 answer
Encountered unsupported property SecurityGroupId
I want to provision an Application Load Balancer, but got an error:
Encountered unsupported property SecurityGroupId
My CloudFormation template is:
AWSTemplateFormatVersion: 2010-09-09
Description: AWS CloudFormation Sample Template for creating…

Geralt
- 17
- 3