Skip to content

Commit

Permalink
feat: make rds datasets db parameter group configurable (#3025)
Browse files Browse the repository at this point in the history
  • Loading branch information
niross authored Feb 13, 2024
1 parent 7a367a7 commit ddc3432
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ variable superset_dw_user_username {}
variable superset_dw_user_password {}

variable datasets_rds_cluster_database_engine {}
variable datasets_rds_cluster_instance_parameter_group {}
variable datasets_rds_cluster_backup_retention_period {}
variable datasets_rds_cluster_database_name {}
variable datasets_rds_cluster_master_username {}
Expand Down
2 changes: 1 addition & 1 deletion infra/rds_datasets.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resource "aws_rds_cluster_instance" "datasets" {
instance_class = "${var.datasets_rds_cluster_instance_class}"
performance_insights_enabled = "${var.datasets_rds_cluster_instance_performance_insights_enabled}"
promotion_tier = 1
db_parameter_group_name = "aurora-postgresql-14-pgaudit-instance-parameter-group"
db_parameter_group_name = var.datasets_rds_cluster_instance_parameter_group

lifecycle {
ignore_changes = ["engine_version"]
Expand Down

0 comments on commit ddc3432

Please sign in to comment.