📦 Overview

The Terraform AWS Resource Master is a “main” module that ties together multiple submodules to provision a complete AWS environment. Out of the box it can create:

⚙️ Prerequisites

🚀 Quick Start

Create a root main.tf and reference the module:

module "resource_master" {
  source      = "Pradipbabar/resource-master/aws/"
  enable_vpc  = true
  enable_ec2  = true
  enable_rds  = true
  enable_s3   = true
  # enable_cloudwatch = true
  # enable_dynamodb  = true
}

Then run:

terraform init
terraform apply

To tear down:

terraform destroy

đź”— Submodules

📤 Outputs

Each submodule exports useful values for chaining or reference:

Check each submodule’s README for the full list.

đź”® Future Enhancements