terraform fmt

This commit is contained in:
ryhud 2021-11-12 16:33:12 -05:00
parent 91b12bb8b9
commit 057a0330ca
4 changed files with 142 additions and 142 deletions

View File

@ -51,7 +51,7 @@ resource "azurerm_network_security_group" "bastion_nsg" {
access = "Allow"
protocol = "*"
source_port_range = "*"
destination_port_ranges = ["5701","8080"]
destination_port_ranges = ["5701", "8080"]
source_address_prefix = "VirtualNetwork"
destination_address_prefix = "VirtualNetwork"
}
@ -98,7 +98,7 @@ resource "azurerm_network_security_group" "bastion_nsg" {
destination_port_ranges = ["80"]
source_address_prefix = "*"
destination_address_prefix = "Internet"
}
}
}