Questions tagged [amazon-elastic-beanstalk]

AWS Elastic Beanstalk is a PaaS (Platform as a Service) service from Amazon Web Services that allows users to create applications and push them to a definable set of AWS services.

AWS Elastic Beanstalk is a PaaS (Platform as a Service) service from Amazon Web Services that allows users to create applications and push them to a definable set of AWS services, including Amazon EC2, Amazon S3, Amazon Simple Notification Service (SNS), Amazon CloudWatch, auto scaling, and elastic load balancers.

AWS Elastic Beanstalk Documentation

9253 questions
30
votes
4 answers

Configure apache on elastic beanstalk

I'm developing with django on elastic beanstalk and I want to make two changes to apache configuration: 1. redirect www.domain.com to domain.com 2. redirect http://domain.com to https://domain.com I don't have experience with apache configuration,…
30
votes
3 answers

Websockets with socket.io on AWS Elastic Beanstalk

I'm trying to setup a websocket-server with socket.io on AWS Elastic Beanstalk. Got the initial request to /socket.io/1/?t=xxxx up and running but the websocket handshake fails with this error: WebSocket connection to…
funparko
  • 303
  • 1
  • 3
  • 4
29
votes
6 answers

How to avoid a TooManyApplicationVersion exception on AWS Elastic Beanstalk?

Lately has anyone witnessed the TooManyApplicationVersions Exception on AWS Elastic Beanstalk console while deploying a new application version (war)? It's so annoying to see this message as it appears only after you have finished uploading the…
A Null Pointer
  • 2,261
  • 3
  • 26
  • 28
29
votes
1 answer

Where to put ebextensions config in AWS Elastic Beanstalk Docker deploy with dockerrun source bundle?

I am having trouble getting my docker elastic beanstalk deploy to read my .ebextensions/setup.config file. The documentation for eb environment configuration says: You can include one or more configuration files with your source bundle.…
MrColes
  • 2,453
  • 1
  • 28
  • 38
29
votes
3 answers

Static IP using Elastic Beanstalk

I need the static IP to allow access to a firewalled network not on the AWS network. Is it possible to get a static IP for a load balanced app using Elastic Beanstalk? I'm following the AWS docs regarding using Route 53 to host my app with a domain…
29
votes
1 answer

elasticbeanstalk ssl without custom domain

I'm trying to enable SSL on a Token Vending Machine hosted on Amazon Elastic Beanstalk. However, it tells me I need an SSL certificate if I try to enable a port 443 listener. This would make sense if I had my own domain, but this is a system machine…
houbysoft
  • 32,532
  • 24
  • 103
  • 156
29
votes
2 answers

Quiet output from pip via requirements file?

pip has a -q/--quiet flag that works ideally from the command line. I'm using an automated deployment process (Amazon Elastic Beanstalk), and the tools use pip to install from a requirements file. Unfortunately, pip is generating non-error output…
kungphu
  • 4,592
  • 3
  • 28
  • 37
29
votes
5 answers

Setting up private Github access with AWS Elastic Beanstalk and Ruby container

Going by a recent tutorial on setting up AWS Elastic Beanstalk for Ruby deployment using Git, I just set up a Elastic Beanstalk environment from my CI server. However, the application failed to start. I went through the logs to find that bundle…
29
votes
6 answers

Setting up Django on AWS Elastic Beanstalk: WSGIPath not found

I've been trying for several days now to set up Django under Amazon Web Services' Elastic Beanstalk. I think the problem I'm hitting is this one: ERROR - Your WSGIPath refers to a file that does not exist. I followed the tutorial here and all goes…
29
votes
2 answers

How to prevent downtime during AWS Elastic Beanstalk deployment of a new version of the app?

My understanding of Elastic Beanstalk is that when you deploy a new version of your app, that it deploys it to the Amazon EC2 instances one at a time (if you have more than one). However, even with a minimum of two instances, my application incurs…
28
votes
2 answers

AWS API Gateway + Elastic Beanstalk and Microservices

I'm going to build microservices' architecture on AWS and I want to ask you to clarify my doubts. My current general concept I would like to use API Gateway, which exposes microsevices' APIs running in Elastic Beanstalk. I would like to place the…
28
votes
5 answers

How to specify sensitive environment variables at deploy time with Elastic Beanstalk

I am deploying a Python Flask application with Elastic Beanstalk. I have a config file /.ebextensions/01.config where among other things I set some environment variables - some of which should be secret. The file looks something like this:…
Iulian
  • 1,496
  • 2
  • 15
  • 35
28
votes
5 answers

Elastic Beanstalk could not find any platforms

I'm trying to deploy my django app via amazon Elastic BeanStalk(using this tutorial), but getting the following error. ERROR: Elastic Beanstalk could not find any platforms. Ensure you have the necessary permissions to access Elastic Beanstalk. How…
28
votes
4 answers

Elastic beanstalk deployment taking longer than timeout period, how do I increase timeout period

Elastic beanstalk deployment of a new environment for an application using the AWS website warns Create environment operation is complete, but with command timeouts. Try increasing the timeout period and although it eventually shows environment as…
Paul Taylor
  • 13,411
  • 42
  • 184
  • 351
28
votes
4 answers

Redirect to https through url rewrite in IIS within elastic beanstalk's load balancer

How do you use IIS's url rewrite module to force users to use ssl while you are behind an elastic beanstalk load balancer?