Share via

DNS label is already reserved by another Azure resource

Hoa Vo (Centific Technologies Inc) 20 Reputation points Microsoft External Staff
2026-05-14T16:58:50.42+00:00

The deployment of the public IPv6 address in the Microsoft tenant failed with the following error:

DNS record mydns.cloudapp.azure.com is already reserved by another resource. (Code: DnsRecordIsReserved)

To investigate, I searched across all subscriptions using the command below to identify the resource currently holding this DNS label so that it could be released. Unfortunately, I was unable to find any resource associated with this domain.

''' for sub in $(az account list --query "[].id" -o tsv); do 

  echo "Checking subscription: $sub" 

  az account set --subscription $sub 

  az resource list \ 

    --query "[?tags && contains(to_string(tags), 'edu-lcereading-int')].[name, type, resourceGroup]" \ 

    -o table 

done '''

I also attempted to create a new public IP manually using the same DNS label but received the same error again.

Could the support team please help verify whether this DNS label is still reserved by an existing or orphaned resource, and if so, assist with releasing it? Please note that the DNS record was registered by our team in OneCert on April 21, 2026

Azure DNS
Azure DNS

An Azure service that enables hosting Domain Name System (DNS) domains in Azure.

0 comments No comments

Answer accepted by question author

Vallepu Venkateswarlu 10,180 Reputation points Microsoft External Staff Moderator
2026-05-14T18:27:24.6466667+00:00

Hi @ Hoa Vo (Centific Technologies Inc),

Welcome to Microsoft Q&A Platform.

As discussed, the endpoint is reserved in the another tenant and cannot be used in the test tenant. Alternatively, please use a different name or create a new one for the Azure Public IP.

Ref: Domain Name Label Scope

Please210246-screenshot-2021-12-10-121802.pngand “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Stanislav Zhelyazkov 29,586 Reputation points MVP Volunteer Moderator
    2026-05-15T07:28:03.31+00:00

    Hi,

    DNS names in this case need to be unique by all azure tenants and are not scoped only to your tenant. The domain .cloudapp.azure.com is used by all other tenants in Azure so someone other customer registered mydns. If you want your own friendly dns name you need to use custom domain. For this you will need your own DNS provider or use Azure DNS.

    Note that once you have released a dns name for those domains owned by Azure you cannot retain it. It is free for some other tenant to take it. If you want to be able to retain the DNS name you will need to use Domain Name Label Scope in case you delete the public IP and you want to create it with the same name so you can receive the same domain name.

    A list of Azure owned domains (not customer owned).

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.