├── .dockerignore ├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── Dockerfile-nginx ├── cron └── artisan-schedule-run ├── docker-compose.yml ├── nginx ├── default.conf ├── index.php ├── nginx.conf └── robots.txt ├── php-fpm └── configs │ ├── php-fpm.conf │ ├── php.ini │ └── www.conf └── terraform ├── .gitignore ├── master.tf ├── modules ├── aurora │ ├── aurora.tf │ └── outputs.tf ├── ec2 │ ├── ec2.tf │ └── outputs.tf ├── s3 │ ├── outputs.tf │ └── s3.tf └── vpc │ ├── outputs.tf │ └── vpc.tf ├── outputs.tf └── terraform.tfvars /.dockerignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | deploy/terraform 3 | vendor 4 | storage/logs 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/Dockerfile-nginx -------------------------------------------------------------------------------- /cron/artisan-schedule-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/cron/artisan-schedule-run -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/nginx/index.php -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /nginx/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /php-fpm/configs/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/php-fpm/configs/php-fpm.conf -------------------------------------------------------------------------------- /php-fpm/configs/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/php-fpm/configs/php.ini -------------------------------------------------------------------------------- /php-fpm/configs/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/php-fpm/configs/www.conf -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .terraform/ -------------------------------------------------------------------------------- /terraform/master.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/master.tf -------------------------------------------------------------------------------- /terraform/modules/aurora/aurora.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/aurora/aurora.tf -------------------------------------------------------------------------------- /terraform/modules/aurora/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/aurora/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/ec2/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/ec2/ec2.tf -------------------------------------------------------------------------------- /terraform/modules/ec2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/ec2/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/s3/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/s3/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/s3/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/s3/s3.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/vpc/outputs.tf -------------------------------------------------------------------------------- /terraform/modules/vpc/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/modules/vpc/vpc.tf -------------------------------------------------------------------------------- /terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/outputs.tf -------------------------------------------------------------------------------- /terraform/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/li0nel/laravel-terraform/HEAD/terraform/terraform.tfvars --------------------------------------------------------------------------------