Skip to content

Commit 3fc8dcc

Browse files
authored
Merge branch 'master' into tesha/FqdnFilteringFqSupport
2 parents a0a77b3 + d80ebe5 commit 3fc8dcc

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Network/Network/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
- Update-AzureRmVpnConnection : added parameter EnableInternetSecurity
4444
- New-AzureRmExpressRouteConnection : added parameter EnableInternetSecurity
4545
- Set-AzureRmExpressRouteConnection : added parameter EnableInternetSecurity
46+
* Fix required subnet with name AzureBastionSubnet in `PSBastion` can be case insensitive
4647
* Support for Destination FQDNs in Network Rules and Translated FQDN in NAT Rules for Azure Firewall
4748

4849
## Version 1.15.0

src/Network/Network/Models/Bastion/PSBastion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public void Allocate(PSVirtualNetwork virtualNetwork, PSPublicIpAddress publicIp
5353
PSSubnet BastionSubnet = null;
5454
try
5555
{
56-
BastionSubnet = virtualNetwork.Subnets.Single(subnet => BastionSubnetName.Equals(subnet.Name));
56+
BastionSubnet = virtualNetwork.Subnets.Single(subnet => BastionSubnetName.Equals(subnet.Name, StringComparison.OrdinalIgnoreCase));
5757
}
5858

5959
catch (InvalidOperationException)

0 commit comments

Comments
 (0)