├── .github └── workflows │ └── terraform.yml ├── .gitignore ├── .terraform.lock.hcl ├── README.md ├── autoscaling.tf ├── backend.tf ├── docs ├── architecture.jpg └── waf.jpg ├── efs.tf ├── local.tf ├── output.tf ├── provider.tf ├── rds.tf ├── route_53.tf ├── staging.terraform.tfvars ├── templates └── user_data.tpl ├── variables.tf ├── vpc.tf └── waf.tf /.github/workflows/terraform.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/.github/workflows/terraform.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/README.md -------------------------------------------------------------------------------- /autoscaling.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/autoscaling.tf -------------------------------------------------------------------------------- /backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/backend.tf -------------------------------------------------------------------------------- /docs/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/docs/architecture.jpg -------------------------------------------------------------------------------- /docs/waf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/docs/waf.jpg -------------------------------------------------------------------------------- /efs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/efs.tf -------------------------------------------------------------------------------- /local.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/local.tf -------------------------------------------------------------------------------- /output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/output.tf -------------------------------------------------------------------------------- /provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/provider.tf -------------------------------------------------------------------------------- /rds.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/rds.tf -------------------------------------------------------------------------------- /route_53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/route_53.tf -------------------------------------------------------------------------------- /staging.terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/staging.terraform.tfvars -------------------------------------------------------------------------------- /templates/user_data.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/templates/user_data.tpl -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/variables.tf -------------------------------------------------------------------------------- /vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/vpc.tf -------------------------------------------------------------------------------- /waf.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindrasinghh/Zero-to-Hero-Deploying-a-Full-Stack-AWS-Architecture-Using-Terraform/HEAD/waf.tf --------------------------------------------------------------------------------