Skip to content

Commit

Permalink
fix: add condition on create apiary db parameter group resource (#277)
Browse files Browse the repository at this point in the history
* fix: enable apiary rds param group only when external database host not specified

* fix: add index

* fix: update change log

---------

Co-authored-by: janli <janli@expediagroup.com>
  • Loading branch information
githubjianli and JianLi-Expedia authored Sep 11, 2024
1 parent 578970e commit d4d32e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [7.3.8] - 2024-09-11
### Fixed
- Enable `apiary_db_para_group` only when `external_database_host` not specified.

## [7.3.7] - 2024-09-10
### Fixed
- Set `db_instance_class` default to `db.t4g.medium`.
Expand Down
3 changes: 2 additions & 1 deletion db.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ resource "random_string" "db_master_password" {
}

resource "aws_rds_cluster_parameter_group" "apiary_rds_param_group" {
count = var.external_database_host == "" ? 1 : 0
name = "${local.instance_alias}-param-group"
family = var.rds_family # Needs to be kept in sync with aws_rds_cluster.apiary_cluster.engine and version
description = "Apiary-specific Aurora parameters"
Expand Down Expand Up @@ -77,7 +78,7 @@ resource "aws_rds_cluster" "apiary_cluster" {
final_snapshot_identifier = "${local.instance_alias}-cluster-final-${random_id.snapshot_id[0].hex}"
iam_database_authentication_enabled = true
apply_immediately = var.db_apply_immediately
db_cluster_parameter_group_name = aws_rds_cluster_parameter_group.apiary_rds_param_group.name
db_cluster_parameter_group_name = aws_rds_cluster_parameter_group.apiary_rds_param_group[0].name
storage_encrypted = var.encrypt_db
copy_tags_to_snapshot = var.db_copy_tags_to_snapshot
lifecycle {
Expand Down

0 comments on commit d4d32e4

Please sign in to comment.