-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modify versions used in example and README
- Loading branch information
Mourad T
committed
Jul 8, 2019
1 parent
d5e3d1a
commit 90946bb
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" | ||
|