File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ This terraform module will create:
6161| instance\_ class | Instance class | ` string ` | ` "db.m4.large" ` | no |
6262| maintenance\_ window | Maintenance window | ` string ` | ` "sun:04:32-sun:05:02" ` | no |
6363| max\_ allocated\_ storage | Max allocate storage | ` number ` | ` 1000 ` | no |
64+ | parameter\_ group\_ family | The family of the DB parameter group | ` string ` | ` "postgres12" ` | no |
6465| parameter\_ group\_ name | The name of the rds parameter group | ` string ` | ` "rds-postgres-pg" ` | no |
6566| postgres\_ name | The name of the postgres instance | ` string ` | ` "tamr_rds_db" ` | no |
6667| security\_ group\_ name | Name for the security group for the rds instance | ` string ` | ` "tamr_rds_sg" ` | no |
Original file line number Diff line number Diff line change 11resource "aws_db_parameter_group" "rds_postgres_pg" {
22 name = var. parameter_group_name
3- family = " postgres9.6 "
3+ family = var . parameter_group_family
44 description = " TAMR RDS parameter group"
55 tags = var. additional_tags
66}
Original file line number Diff line number Diff line change @@ -130,5 +130,10 @@ variable "engine_version" {
130130 description = " Version of RDS Postgres"
131131 type = string
132132 default = " 12.3"
133+ }
133134
135+ variable "parameter_group_family" {
136+ description = " The family of the DB parameter group"
137+ type = string
138+ default = " postgres12"
134139}
You can’t perform that action at this time.
0 commit comments