Module: documentdb-cluster
Terraform module to provision an Amazon DocumentDB
cluster.
Usage
For a complete example, see examples/complete.
For automated tests of the complete example using bats and Terratest (which tests and deploys the example on AWS), see test.
module "documentdb_cluster" {
source = "cloudposse/documentdb-cluster/aws"
# Cloud Posse recommends pinning every module to a specific version
# version = "x.x.x"
namespace = "eg"
stage = "testing"
name = "docdb"
cluster_size = 3
master_username = "admin1"
master_password = "Test123456789"
instance_class = "db.r4.large"
vpc_id = "vpc-xxxxxxxx"
subnet_ids = ["subnet-xxxxxxxx", "subnet-yyyyyyyy"]
allowed_security_groups = ["sg-xxxxxxxx"]
zone_id = "Zxxxxxxxx"
}