Skip to content

Commit

Permalink
use rds security group (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
alismx authored Aug 5, 2024
1 parent bd513a8 commit 39f589d
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 @@ -8,7 +8,7 @@ resource "aws_db_instance" "tefca-viewer-db" {
username = var.db_username
password = random_string.setup_rds_password.result
db_subnet_group_name = aws_db_subnet_group.this.name
vpc_security_group_ids = var.private_subnet_ids
vpc_security_group_ids = [aws_security_group.ds_sg.id]
parameter_group_name = aws_db_parameter_group.this.name
publicly_accessible = false
skip_final_snapshot = true
Expand Down

0 comments on commit 39f589d

Please sign in to comment.