Browse Source

Fixes RDS Module Version to One Compatible with Our AWS Provider

terraform/aws/rds v4.2.0 is the sweet spot for now.

To be tagged v4.2.9
Fred Damstra [afs macbook] 3 years ago
parent
commit
66821eb235
2 changed files with 2 additions and 2 deletions
  1. 1 1
      base/jira/rds_jira/main.tf
  2. 1 1
      base/rhsso/rds.tf

+ 1 - 1
base/jira/rds_jira/main.tf

@@ -17,7 +17,7 @@ output "ca_cert_identifier" {
 
 module "jira_db" {
   source  = "terraform-aws-modules/rds/aws"
-  version = "~> v4.0"
+  version = "v4.2.0"
 
   identifier = var.identifier # this is the RDS identifier, not the DB name
   db_name    = "jira"         # the DB name

+ 1 - 1
base/rhsso/rds.tf

@@ -33,7 +33,7 @@ resource "random_password" "password" {
 
 module "rhsso_db" {
   source  = "terraform-aws-modules/rds/aws"
-  version = "~> v4.0"
+  version = "v4.2.0"
 
   identifier = var.identifier # this is the RDS identifier, not the DB name
   db_name    = "rhsso"        # the DB name