Terraform module to bootstrap a RDS DB instance.
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"
}
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.