epomatti / aws-elastic-beanstalk-app

Sample AWS Elastic Beanstalk application connecting to DynamoDB and other services

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aws-elastic-beanstalk-app

Setup Beanstalk

Simply create the infrastructure:

terraform init
terraform apply -auto-approve

And upload the code archive to the app.

Local Development

sudo apt install lsb-release ca-certificates apt-transport-https software-properties-common -y
sudo add-apt-repository ppa:ondrej/php
sudo apt install php8.1 -y

Install composer:

php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '55ce33d7678c5a611085589f1f3ddf8b3c52d662cd01d4ba75c0ee0459970c2200a51f492d557530c71c15d8dba01eae') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo apt-get install php-curl php-xml -y

Add to path:

mv composer.phar /usr/local/bin/composer

Start the server:

php -S localhost:8080 -t public public/index.php
docker build -t beanstalk-php .

References

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/command-options-general.html#command-options-general-autoscalinglaunchconfiguration
https://automateinfra.com/2021/03/24/how-to-launch-aws-elastic-beanstalk-using-terraform/
https://docs.aws.amazon.com/elasticbeanstalk/latest/platforms/platforms-supported.html#platforms-supported.PHP

About

Sample AWS Elastic Beanstalk application connecting to DynamoDB and other services

License:MIT License


Languages

Language:PHP 78.7%Language:Blade 16.9%Language:HCL 3.1%Language:Shell 1.0%Language:JavaScript 0.3%