Skip to content

Commit a511cce

Browse files
Remove - from storage account name variable
Storage account names only support lowercase letters and digits.
1 parent 3d0308f commit a511cce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/dns/dns-traffic-log-how-to.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ Set up a local PowerShell repository and install the Az.DnsResolver PowerShell m
239239
$domainListName = "domainlist-$($nameSuffix)"
240240
$securityRuleName = "securityrule-$($nameSuffix)"
241241
$resolverPolicyLinkName = "dnsresolverpolicylink"
242-
$storageAccountName = "stor-$($name)" # Customize this, taking care that the name is not too long
242+
$storageAccountName = "stor$($name)" # Customize this, taking care that the name is not too long
243243
$diagnosticSettingName = "diagnosticsetting-$($nameSuffix)"
244244
$vnetId = "/subscriptions/$subscriptionId/resourceGroups/$resourceGroupName/providers/Microsoft.Network/virtualNetworks/$virtualNetworkName"
245245
@@ -369,4 +369,4 @@ At line:1 char:1
369369

370370
- Review concepts related to [DNS security policy](dns-security-policy.md).
371371
- Review [Azure Private DNS zones scenarios](private-dns-scenarios.md).
372-
- Review [DNS resolution in virtual networks](../virtual-network/virtual-networks-name-resolution-for-vms-and-role-instances.md).
372+
- Review [DNS resolution in virtual networks](../virtual-network/virtual-networks-name-resolution-for-vms-and-role-instances.md).

0 commit comments

Comments
 (0)