Skip to content

Commit

Permalink
modify versions used in example and README
Browse files Browse the repository at this point in the history
  • Loading branch information
Mourad T committed Jul 8, 2019
1 parent d5e3d1a commit 90946bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ module "example_team_rds" {
is-production = "false"
environment-name = "development"
infrastructure-support = "[email protected]"
rds_family = "9.6"
rds_family = "postgres10"
providers = {
# This can be either "aws.london" or "aws.ireland:
Expand Down
4 changes: 2 additions & 2 deletions example/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ module "example_team_rds" {
business-unit = "example-bu"
application = "exampleapp"
is-production = "false"
db_engine_version = "9.6" # change this postgres version as you see fit.
db_engine_version = "10" # change this postgres version as you see fit.
environment-name = "development"
infrastructure-support = "[email protected]"
force_ssl = "true"

# rds_family should be one of: postgres9.4, postgres9.5, postgres9.6, postgres10, postgres11
# Pick the one that defines the postgres version the best
rds_family = "postgres9.6"
rds_family = "postgres10"

# use "allow_major_version_upgrade" when upgrading the major version of an engine
allow_major_version_upgrade = "true"
Expand Down

0 comments on commit 90946bb

Please sign in to comment.