Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 721 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 721 Bytes

RDS DB Instance Module

Terraform module to bootstrap a RDS DB instance.

Usage

module "db" {
  source = "../../modules/rds"

  name = "examples-rds-instance"

  vpc_id          = "vpc-1234567890"
  db_subnet_group = "db-subnet-group-1234567890"

  db_name            = "db_name"
  db_master_username = "db_master_username"
  db_port            = 5432

  db_instance_class       = "db.t2.micro"
}

Module Documentation

The module documentation is generated with terraform-docs by running terraform-docs md . > ./docs/MODULE.md from the module directory.

You can also view the latest version of the module documentation here.