Skip to content

Commit

Permalink
Fixing lists
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrichlake committed Feb 21, 2024
1 parent a59cf2b commit 27c715b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions operations/template/net.tf
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ resource "azurerm_network_security_rule" "Allow_All_Out_omhsinf" {
protocol = "Tcp"
source_port_range = "*"
destination_port_ranges = ["5432"]
source_address_prefixes = ["VirtualNetwork"]
source_address_prefixes = ["VIRTUALNETWORK"]
destination_address_prefix = "*"
resource_group_name = data.azurerm_resource_group.group.name
network_security_group_name = azurerm_network_security_group.db_security_group.name
Expand All @@ -174,8 +174,8 @@ resource "azurerm_network_security_rule" "db_outbound_allow" {
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_ranges = ["*"]
source_address_prefixes = ["*"]
destination_port_range = "*"
source_address_prefix = "*"
destination_address_prefix = "*"
resource_group_name = data.azurerm_resource_group.group.name
network_security_group_name = azurerm_network_security_group.db_security_group.name
Expand All @@ -189,8 +189,8 @@ resource "azurerm_network_security_rule" "db_inbound_allow" {
protocol = "Tcp"
source_port_range = "*"
destination_port_ranges = ["5432"]
source_address_prefixes = ["VirtualNetwork"]
destination_address_prefix = "VirtualNetwork"
source_address_prefixes = ["VIRTUALNETWORK"]
destination_address_prefix = "VIRTUALNETWORK"
resource_group_name = data.azurerm_resource_group.group.name
network_security_group_name = azurerm_network_security_group.db_security_group.name
}
Expand Down

0 comments on commit 27c715b

Please sign in to comment.