Skip to content

Commit

Permalink
Update postgres.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
Apollo-XIV committed Mar 5, 2024
1 parent 1763f64 commit 29e8c4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infra/modules/db/postgres.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "aws_db_instance" "default" {
allocated_storage = 5
db_name = "forum"
db_subnet_group_name = aws_db_subnet_group.forum.name
vpc_security_group_ids = [aws_security_group.db]
vpc_security_group_ids = [aws_security_group.db.id]
publicly_accessible = true
engine = "postgres"
instance_class = "db.t3.micro"
Expand Down

0 comments on commit 29e8c4e

Please sign in to comment.