Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Dec 9, 2024
1 parent 3994044 commit 9c37c6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rds-postgres/ports.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ locals {
]

# these are ignored
ingress_networks = var.ingress_networks
egress_networks = var.egress_networks
ingress_networks = var.ingress_networks == null ? [] : var.ingress_networks
egress_networks = var.egress_networks == null ? [] : var.egress_networks

# these are ignored
ingress_sg = var.ingress_security_groups
Expand Down

0 comments on commit 9c37c6b

Please sign in to comment.