├── README.md ├── aws_module_project ├── backend_infra.tf ├── main.tf ├── my_app_infra_module │ ├── my_bucket.tf │ ├── my_server.tf │ ├── my_table.tf │ └── variables.tf ├── providers.tf └── terraform.tf └── aws_related ├── dynamo.tf ├── ec2.tf ├── output.tf ├── providers.tf ├── s3.tf ├── terraform.tf └── variables.tf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/README.md -------------------------------------------------------------------------------- /aws_module_project/backend_infra.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/backend_infra.tf -------------------------------------------------------------------------------- /aws_module_project/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/main.tf -------------------------------------------------------------------------------- /aws_module_project/my_app_infra_module/my_bucket.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/my_app_infra_module/my_bucket.tf -------------------------------------------------------------------------------- /aws_module_project/my_app_infra_module/my_server.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/my_app_infra_module/my_server.tf -------------------------------------------------------------------------------- /aws_module_project/my_app_infra_module/my_table.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/my_app_infra_module/my_table.tf -------------------------------------------------------------------------------- /aws_module_project/my_app_infra_module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/my_app_infra_module/variables.tf -------------------------------------------------------------------------------- /aws_module_project/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/providers.tf -------------------------------------------------------------------------------- /aws_module_project/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_module_project/terraform.tf -------------------------------------------------------------------------------- /aws_related/dynamo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/dynamo.tf -------------------------------------------------------------------------------- /aws_related/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/ec2.tf -------------------------------------------------------------------------------- /aws_related/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/output.tf -------------------------------------------------------------------------------- /aws_related/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/providers.tf -------------------------------------------------------------------------------- /aws_related/s3.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/s3.tf -------------------------------------------------------------------------------- /aws_related/terraform.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/terraform.tf -------------------------------------------------------------------------------- /aws_related/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LondheShubham153/terraform-advanced/HEAD/aws_related/variables.tf --------------------------------------------------------------------------------