Merge pull request #6 from ryhud/ryhud-301

terraform fmt
This commit is contained in:
Ryan Hudson 2021-11-12 16:35:02 -05:00 committed by GitHub
commit 78c96d168b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"
}
}
}