├── .editorconfig ├── .gitignore ├── .tool-versions ├── LICENSE.md ├── README.md ├── api_gateway.tf ├── cloudfront.tf ├── efs.tf ├── lambda.tf ├── main.tf ├── s3.tf ├── security.tf └── src ├── handler.php └── php.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/.gitignore -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | terraform 0.12.28 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/README.md -------------------------------------------------------------------------------- /api_gateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/api_gateway.tf -------------------------------------------------------------------------------- /cloudfront.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/cloudfront.tf -------------------------------------------------------------------------------- /efs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/efs.tf -------------------------------------------------------------------------------- /lambda.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/lambda.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/main.tf -------------------------------------------------------------------------------- /s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/s3.tf -------------------------------------------------------------------------------- /security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/security.tf -------------------------------------------------------------------------------- /src/handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/src/handler.php -------------------------------------------------------------------------------- /src/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KotobaMedia/terraform-aws-wordpress-on-lambda-efs/HEAD/src/php.ini --------------------------------------------------------------------------------