File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ This terraform module will create:
5656| backup\_ retention\_ period | Backup retention period in days | ` number ` | ` 14 ` | no |
5757| backup\_ window | Backup window | ` string ` | ` "03:29-03:59" ` | no |
5858| copy\_ tags\_ to\_ snapshot | Copy tags to snapshots | ` bool ` | ` true ` | no |
59+ | engine\_ version | Version of RDS Postgres | ` string ` | ` "12.3" ` | no |
5960| identifier\_ prefix | Identifier prefix for the RDS instance | ` string ` | ` "tamr-rds-" ` | no |
6061| instance\_ class | Instance class | ` string ` | ` "db.m4.large" ` | no |
6162| maintenance\_ window | Maintenance window | ` string ` | ` "sun:04:32-sun:05:02" ` | no |
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ resource "aws_db_instance" "rds_postgres" {
2525 storage_encrypted = true
2626
2727 engine = " postgres"
28- engine_version = " 9.6 "
28+ engine_version = var . engine_version
2929 instance_class = var. instance_class
3030
3131 username = var. username
Original file line number Diff line number Diff line change @@ -125,3 +125,10 @@ variable "additional_cidrs" {
125125 type = list (string )
126126 default = []
127127}
128+
129+ variable "engine_version" {
130+ description = " Version of RDS Postgres"
131+ type = string
132+ default = " 12.3"
133+
134+ }
You can’t perform that action at this time.
0 commit comments