Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Dec 16, 2024
1 parent f551045 commit a18e049
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rds-postgres/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ resource "aws_security_group" "this_security_group" {
from_port = 0
to_port = 0
protocol = -1
security_groups = [local.ingress_sg]
security_groups = local.ingress_sg
}
}

Expand Down Expand Up @@ -143,7 +143,7 @@ resource "aws_security_group" "this_security_group" {
from_port = 0
to_port = 0
protocol = -1
security_groups = [local.egress_sg]
security_groups = local.egress_sg
}
}

Expand Down

0 comments on commit a18e049

Please sign in to comment.