Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:silinternational/idp-in-a-box in…
Browse files Browse the repository at this point in the history
…to develop
  • Loading branch information
briskt committed Jul 10, 2024
2 parents 354ce28 + 3fc7041 commit cb35381
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraform/020-database/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "random_id" "db_root_pass" {
}

module "rds" {
source = "github.com/silinternational/terraform-modules//aws/rds/mariadb?ref=8.7.0"
source = "github.com/silinternational/terraform-modules//aws/rds/mariadb?ref=8.8.0"
app_name = var.app_name
app_env = var.app_env
db_name = var.db_name
Expand All @@ -26,6 +26,7 @@ module "rds" {
multi_az = var.multi_az
skip_final_snapshot = var.skip_final_snapshot
replicate_source_db = var.replicate_source_db
ca_cert_identifier = var.ca_cert_identifier
}

/*
Expand Down
5 changes: 5 additions & 0 deletions terraform/020-database/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,8 @@ variable "replicate_source_db" {
description = "To create a replica DB in a separate region, specify the source database ARN"
default = null
}

variable "ca_cert_identifier" {
type = string
default = "rds-ca-rsa2048-g1"
}

0 comments on commit cb35381

Please sign in to comment.