Skip to content

Commit

Permalink
Add additional RDS logs (#99)
Browse files Browse the repository at this point in the history
* added rds upgrade logs to cloudwatch

* fix linting
  • Loading branch information
shanice-skylight authored Oct 21, 2024
1 parent 95c7bef commit 9f37b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aws/implementation/modules/rds/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "aws_db_instance" "tefca-viewer-db" {
allocated_storage = 5
engine = var.engine_type
engine_version = var.engine_version
enabled_cloudwatch_logs_exports = ["postgresql"]
enabled_cloudwatch_logs_exports = ["postgresql", "upgrade"]
username = var.db_username
password = random_password.setup_rds_password.result
db_subnet_group_name = aws_db_subnet_group.this.name
Expand Down

0 comments on commit 9f37b0f

Please sign in to comment.