@@ -7,7 +7,7 @@ This repo follows the [terraform standard module structure](https://www.terrafor
77Inline example implementation of the module. This is the most basic example of what it would look like to use this module.
88```
99module "rds_postgres" {
10- source = "git::https://github.com/Datatamer/terraform-aws-rds-postgres.git?ref=0.4 .0"
10+ source = "git::https://github.com/Datatamer/terraform-aws-rds-postgres.git?ref=2.0 .0"
1111 postgres_name = "example_rds_postgres"
1212 parameter_group_name = "example-rds-postgres-pg"
1313 identifier_prefix = "example-rds-"
@@ -29,7 +29,6 @@ This terraform module will create:
2929* an AWS RDS Postgres instance
3030* a database parameter group
3131* a database subnet group
32- * a security group for the rds instance
3332
3433<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
3534## Requirements
@@ -49,9 +48,9 @@ This terraform module will create:
4948
5049| Name | Description | Type | Default | Required |
5150| ------| -------------| ------| ---------| :--------:|
52- | ingress\_ sg\_ ids | List of security group IDs to allow ingress from (i.e. Spark cluster SG IDs, Tamr VM SG ID) | ` list(string) ` | n/a | yes |
5351| password | The password for the master DB user. | ` string ` | n/a | yes |
5452| rds\_ subnet\_ ids | VPC subnet IDs in subnet group | ` list(string) ` | n/a | yes |
53+ | security\_ group\_ ids | List of security group IDs to allow ingress from (i.e. Spark cluster SG IDs, Tamr VM SG ID) | ` list(string) ` | n/a | yes |
5554| subnet\_ group\_ name | The name of the subnet group to add the RDS instance to | ` string ` | n/a | yes |
5655| vpc\_ id | VPC ID for the rds security group | ` string ` | n/a | yes |
5756| additional\_ cidrs | Additional CIDR to connect to RDS Postgres instance | ` list(string) ` | ` [] ` | no |
@@ -84,7 +83,7 @@ This terraform module will create:
8483| rds\_ hostname | n/a |
8584| rds\_ postgres\_ id | ID of the of the RDS instance |
8685| rds\_ postgres\_ pg\_ id | ID of the RDS postgres parameter group |
87- | rds\_ sg \_ id | ID of the security group attached to the rds instance |
86+ | rds\_ security \_ group \_ ids | List of security group ids attached to the rds instance |
8887| rds\_ username | n/a |
8988
9089<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
0 commit comments