Skip to content

Commit

Permalink
remove trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
craddm committed Nov 8, 2023
1 parent 60dbcf0 commit b1a2230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/common/AzureNetwork.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ function Deploy-Firewall {
# Ensure Firewall public IP address exists
$publicIp = Deploy-PublicIpAddress -Name "${Name}-PIP" -ResourceGroupName $ResourceGroupName -Location $Location -AllocationMethod Static -Sku "Standard" # NB. Azure Firewall requires a 'Standard' public IP
Add-LogMessage -Level Info "Ensuring that firewall '$Name' exists..."
$vnet = Get-AzVirtualNetwork -Name $VirtualNetworkName -ResourceGroupName $ResourceGroupName
$vnet = Get-AzVirtualNetwork -Name $VirtualNetworkName -ResourceGroupName $ResourceGroupName
$firewall = Get-AzFirewall -Name $Name -ResourceGroupName $ResourceGroupName -ErrorVariable notExists -ErrorAction SilentlyContinue
if ($notExists) {
Add-LogMessage -Level Info "[ ] Creating firewall '$Name'"
Expand Down

0 comments on commit b1a2230

Please sign in to comment.