Skip to content

Commit 7c155a9

Browse files
Merge pull request #268544 from greg-lindsay/dns-freshness
add Microsoft.Network rp prereq
2 parents 1ddacfd + a00b652 commit 7c155a9

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

articles/dns/dns-alias.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@ services: dns
55
author: greg-lindsay
66
ms.service: dns
77
ms.topic: article
8-
ms.date: 11/22/2023
8+
ms.date: 03/08/2024
99
ms.author: greglin
1010
---
1111

1212
# Azure DNS alias records overview
1313

1414
Azure DNS alias records are qualifications on a DNS record set. They can reference other Azure resources from within your DNS zone. For example, you can create an alias record set that references an Azure public IP address instead of an A record. Your alias record set points to an Azure public IP address service instance dynamically. As a result, the alias record set seamlessly updates itself during DNS resolution.
1515

16+
> [!NOTE]
17+
> To create alias records, you must register the **Microsoft.Network** resource provider. If the DNS zone and the alias target resource are in different subscriptions, both subscriptions must be registered. For more information, see [Resolve errors for resource provider registration](/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-portal#solution).
18+
1619
An alias record set is supported for the following record types in an Azure DNS zone:
1720

1821
- A

articles/dns/tutorial-alias-tm.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services: dns
66
author: greg-lindsay
77
ms.service: dns
88
ms.topic: tutorial
9-
ms.date: 11/30/2023
9+
ms.date: 03/08/2024
1010
ms.author: greglin
1111
ms.custom: template-tutorial #Required; leave this attribute/value as-is.
1212
#Customer intent: As an experienced network administrator, I want to configure Azure DNS alias records to use my apex domain name with Traffic Manager.
@@ -40,6 +40,16 @@ If you don’t have an Azure subscription, create a [free account](https://azure
4040

4141
Sign in to the [Azure portal](https://portal.azure.com).
4242

43+
## Register the Microsoft.Network resource provider
44+
45+
To create alias records, you must register the **Microsoft.Network** resource provider. If the DNS zone and the alias target resource are in different subscriptions, both subscriptions must be registered. You can register resource providers using Azure CLI, PowerShell, or the Azure portal. See the following example:
46+
47+
```azurecli-interactive
48+
az provider register --namespace Microsoft.Network
49+
```
50+
51+
For more information, see [Resolve errors for resource provider registration](/azure/azure-resource-manager/troubleshooting/error-register-resource-provider?tabs=azure-portal#solution).
52+
4353
## Create the network infrastructure
4454

4555
Create a virtual network and a subnet to place your web servers in.

0 commit comments

Comments
 (0)