A collection of reusable Terraform modules for AWS infrastructure provisioning.
- VPC Module - Creates a configurable Virtual Private Cloud (VPC) with standardized tagging
To use these modules in your Terraform configuration:
module "vpc" {
source = "github.com/ran130987wan/aws_terraform_module//modules/vpc"
vpc_cidr_block = "10.0.0.0/16"
project_name = "my-project"
environment = "dev"
vpc_instance_tenancy = "default"
additional_tags = {
Department = "Engineering"
}
}- Terraform 1.0+
- AWS Provider ~> 5.0
- Clone this repository
- Create feature branches for new modules
- Submit pull requests for review