Elastic Beanstalk Support
-
Hi,
Is FusionAuth supports elastic beanstalk? Instead of using a regular server, I would like to deploy FusionAuth into the Elastic Beanstalk environment.
-
I am not aware of anyone running FusionAuth in Elastic Beanstalk. I am not sure how the database configuration would occur; it's been a while since I look at that, but I don't remember EB being flexible when it came to database connections.
But if I were going to try to do this, I'd look at running the docker image in EB: https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_docker.html
https://fusionauth.io/docs/v1/tech/installation-guide/docker/
Let us know how it goes, please!
-
@dan said in Elastic Beanstalk Support:
I am not aware of anyone running FusionAuth in Elastic Beanstalk. I am not sure how the database configuration would occur; it's been a while since I look at that, but I don't remember EB being flexible when it came to database connections.
Hi, Dan
Sorry for the late answer, we completed the task steps below. I am adding details for the other users that might need it.
- I have created an elastic beanstalk application with docker support.
- While creating the application, I have tried to add the docker file on the web interface which is failed.
- After that, we continue with the aws-CLI through the console. I have generated a new EBS application docker support. I gave the following docker file through the console, after that it started working charmingly
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": "fusionauth/fusionauth-app"
},
"Ports": [
{
"ContainerPort": 9011,
"HostPort": 8000
}
]
} -
Excellent! Thanks for reporting back.
Please let us know how it goes for you in the future. The goal is to have an auth system which requires little care and feeding (no one signs up for an app for the login feature, right?) and so it seems running in EB might be a nice solution.
Thanks again!