Questions tagged [elastic-beanstalk]

AWS Elastic Beanstalk is a PaaS (Platform as a Service) service that allows you to quickly deploy and manage applications in the AWS cloud. Elastic Beanstalk handles the deployment details of capacity provisioning, load balancing, auto-scaling, and application health monitoring.

496 questions
3
votes
3 answers

How to limit log size on Elastic beanstalk with Corretto 8/Amazon Linux 2 platform?

We recently migrated one of our applications to the "Corretto 8 running on 64bit Amazon Linux 2/3.2.12" platform. Now we're seeing the issue that the log files are filling up our disk volume in a span of a bit over a week. We didn't have the issue…
UncleBob
  • 247
  • 2
  • 13
3
votes
1 answer

AWS Elasticbeanstalk modify php-fpm config file

My app is running on AWS Elasticbeanstalk service with PHP 7.4/AMI Linux 2 platform. And I want to modify php-fpm configuration, especially /etc/php-fpm.d/www.conf file, which manages by Beanstalk. AWS Documentation…
aranel
  • 111
  • 2
  • 7
3
votes
2 answers

How do I _remove_ ec2 key pairs from beanstalk environments that already have key pairs assigned to them?

I have a very stupid problem My beanstalk environments have ec2 key pairs attached to them I have since setup my EC2 roles to allow Session Manager to work. So now I dont need key pairs for my beanstalk instances at all which is great. BUT the dumb…
red888
  • 4,183
  • 18
  • 64
  • 111
3
votes
1 answer

What could cause the application load balancer to forward traffic to a unready instance even when the health check is failing?

I have an AWS Elastic beanstalk environment which can scale from 2 to 3 instances configured with an application load balancer. The load balancer has an HTTP healthcheck configured looking for a 200 response. When the environment auto scales to 3…
Steve
  • 135
  • 7
2
votes
0 answers

Is there a way to provide a config file or private key to an Elastic Beanstalk instance?

I have an EBS instance running a Golang webserver application, which uses a config.json that contains important and private configuration values like Database address, user and password. I've been trying to find a solution to provide this…
2
votes
1 answer

attackers bypass aws waf to go for ec2 instances directly

My Setup I have Elastic Beanstalk application, with a public LoadBalancer and public IPs on EC2. The application is behind CloudFront, which is protected with AWS WAF from different attacks I am experiencing now. Route 53 forwards DNS queries to…
2
votes
1 answer

What's the difference between setting AWS Load Balancer to VPC internal and setting equivalent inbound rules?

I'm setting up an API endpoint that I only want to be accessible from other applications inside my VPC. The app is on Elastic Beanstalk and it appears that I can either set my Load Balancer to Internal or Public. AWS gives this explanation: Make…
2
votes
0 answers

Unable to do immutable managed update in single instance environment in elastic beanstalk

I am unable to successfully execute immutable managed update in single instance environment. Process always timeouts with this error as shown in events page: Service:AmazonCloudFormation, Message:Stack named 'awseb-blabla-immutable-stack' aborted…
2
votes
1 answer

Elastic-beanstalk service listening to non-standard port

I am trying to deploy on AWS Elastic Beanstalk a Dockerized server (actually Minecraft/Forge server) that listens to port 25565. The configuration I'd like to use is a simple single-container docker configuration. I tested the Docker image locally…
2
votes
2 answers

Port exposed from Docker image not mapped to Elastic Beanstalk host

I created an AWS Elastic Beanstalk environment with a Load Balancer configured on ports 80 and 8080, I also turned off proxy (was Nginx initially). I created simple Node.js app and Dockerfile for it. Also I added file Dockerrun.aws.json with…
Alex G.P.
  • 132
  • 1
  • 8
2
votes
1 answer

Does elastic beanstalk managed updates replace the need for patch manager (Windows)?

With version 2 of the Elastic Beanstalk platform for Windows, managed platform updates are enabled in immutable update scenarios…
Shawn
  • 131
  • 5
2
votes
0 answers

aws elastic beanstalk nginx reverse proxy settings

I think I might have posted in the wrong place (stackoverflow) but instead of reposting here which would make it duplicates, I will paste the link in…
Dora
  • 341
  • 1
  • 5
  • 15
2
votes
1 answer

AWS Instances breeding and dying for no apparent reason

This has happened a couple of times since we moved our cluster project from Google to AWS. We have an EFS volume that's mounted on a load-balanced cluster in a Beanstalk project. I will be in the middle of setting something up, either uploading a…
2
votes
1 answer

Is there a way to change ciphers accepted by a Tomcat server running in AWS Elastic Beanstalk?

We've got our Tomcat application running in a load-balanced Beanstalk environment, and we've got HTTPS up and running. But I've found that if I try to connect to web services hosted by that application, from an AS/400 running V6R1, I can only use…
hbquikcomjamesl
  • 259
  • 2
  • 16
2
votes
0 answers

Elastic Beanstalk environment and security group config for ELB health checker?

I have an Elastic Beanstalk environment that I can't get Health Checks to work on. Here's my Elastic Beanstalk's Load Balancer configuration: My healthcheck URL is /status/ My EC2 security group (screenshot below) allows all HTTP traffic (for debug…