@@ -29,6 +29,7 @@ Smallest complete fully working example. This example might require extra resour
29
29
This terraform module will create:
30
30
* an AWS RDS Postgres instance
31
31
* a database parameter group
32
+ * a database subnet group
32
33
* a security group for the rds instance
33
34
34
35
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
@@ -49,11 +50,11 @@ This terraform module will create:
49
50
50
51
| Name | Description | Type | Default | Required |
51
52
| ------| -------------| ------| ---------| :--------:|
52
- | password | The postgres password | ` string ` | n/a | yes |
53
+ | password | The password for the master DB user. | ` string ` | n/a | yes |
53
54
| 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 |
55
56
| 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 |
57
58
| vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
58
59
| additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
59
60
| additional\_ tags | Additional tags to set on the RDS instance | ` map ` | ` {} ` | no |
@@ -69,11 +70,11 @@ This terraform module will create:
69
70
| max\_ allocated\_ storage | Max allocate storage | ` number ` | ` 1000 ` | no |
70
71
| parameter\_ group\_ family | The family of the DB parameter group | ` string ` | ` "postgres12" ` | no |
71
72
| 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 |
73
74
| security\_ group\_ name | Name for the security group for the rds instance | ` string ` | ` "tamr_rds_sg" ` | no |
74
75
| skip\_ final\_ snapshot | Skip final snapshot | ` bool ` | ` true ` | no |
75
76
| 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 |
77
78
78
79
## Outputs
79
80
0 commit comments