@@ -29,6 +29,7 @@ Smallest complete fully working example. This example might require extra resour
2929This terraform module will create:
3030* an AWS RDS Postgres instance
3131* a database parameter group
32+ * a database subnet group
3233* a security group for the rds instance
3334
3435<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
@@ -49,11 +50,11 @@ This terraform module will create:
4950
5051| Name | Description | Type | Default | Required |
5152| ------| -------------| ------| ---------| :--------:|
52- | password | The postgres password | ` string ` | n/a | yes |
53+ | password | The password for the master DB user. | ` string ` | n/a | yes |
5354| rds\_ subnet\_ ids | VPC subnet IDs in subnet group | ` list(string) ` | n/a | yes |
54- | spark\_ cluster\_ sg\_ ids | Security group is attached to the ec2 instances of EMR Spark | ` list(string) ` | n/a | yes |
55+ | spark\_ cluster\_ sg\_ ids | List of Spark service access security group IDs to allow ingress from | ` list(string) ` | n/a | yes |
5556| subnet\_ group\_ name | The name of the subnet group to add the RDS instance to | ` string ` | n/a | yes |
56- | tamr\_ vm\_ sg\_ id | Security group id attached to the tamr vm | ` string ` | n/a | yes |
57+ | tamr\_ vm\_ sg\_ id | Tamr VM security group ID to allow ingress from | ` string ` | n/a | yes |
5758| vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
5859| additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
5960| additional\_ tags | Additional tags to set on the RDS instance | ` map ` | ` {} ` | no |
@@ -69,11 +70,11 @@ This terraform module will create:
6970| max\_ allocated\_ storage | Max allocate storage | ` number ` | ` 1000 ` | no |
7071| parameter\_ group\_ family | The family of the DB parameter group | ` string ` | ` "postgres12" ` | no |
7172| parameter\_ group\_ name | The name of the rds parameter group | ` string ` | ` "rds-postgres-pg" ` | no |
72- | postgres\_ name | The name of the postgres instance | ` string ` | ` "tamr_rds_db" ` | no |
73+ | postgres\_ name | The name of the postgres database to create on the DB instance | ` string ` | ` "tamr_rds_db" ` | no |
7374| security\_ group\_ name | Name for the security group for the rds instance | ` string ` | ` "tamr_rds_sg" ` | no |
7475| skip\_ final\_ snapshot | Skip final snapshot | ` bool ` | ` true ` | no |
7576| storage\_ type | Storage type (e.g. gp2, io1) | ` string ` | ` "gp2" ` | no |
76- | username | The postgres username | ` string ` | ` "tamr" ` | no |
77+ | username | The username for the master DB user. | ` string ` | ` "tamr" ` | no |
7778
7879## Outputs
7980
0 commit comments