You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/app-service-managed-certificate-changes-july-2025.md
+105-6Lines changed: 105 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,112 @@ For a detailed explanation of the underlying changes at DigiCert, refer to [chan
29
29
30
30
## Impacted scenarios
31
31
32
-
You can't create or renew ASMCs if:
33
-
- Your app is not publicly accessible.
34
-
- You use Azure Traffic Manager with nested or external endpoints.
35
-
- You rely on `*.trafficmanager.net` domains.
32
+
You can't create or renew ASMCs if your:
33
+
1. Site is not publicly accessible.
34
+
- Public accessibility to your app is required. If your app is only accessible privately (e.g., requiring a client certificate for access, disabling public network access, using private endpoints or IP restrictions), you will not be able to create or renew a managed certificate.
35
+
- Other site configurations or setup methods not explicitly listed here that restrict public access, such as firewalls, authentication gateways, or any custom access policies, can also impact eligibility for managed certificate issuance or renewal.
36
+
1. Site is an Azure Traffic Manager "nested" or "external" endpoint:
37
+
- Only “Azure Endpoints” on Traffic Manager will be supported for certificate creation and renewal.
38
+
- “Nested endpoints” and “External endpoints” will not be supported.
39
+
1. Site relies on _*.trafficmanager.net_ domains.
40
+
- Certificates for _*.trafficmanager.net_ domains will not be supported for creation or renewal.
36
41
37
42
Existing certificates remain valid until expiration (up to 6 months), but will not renew automatically if your configuration is unsupported.
38
43
44
+
## Identify impacted resources
45
+
You can use [Azure Resource Graph (ARG)](https://portal.azure.com/?feature.customPortal=false#view/HubsExtension/ArgQueryBlade) queries to help identify resources that may be affected under each scenario. Please note that these queries are provided as a starting point and may not capture every configuration. Review your environment for any unique setups or custom configurations.
46
+
47
+
### Scenario 1: Site is not publicly accessible
48
+
This ARG query retrieves a list of sites that either have the public network access property disabled or are configured to use client certificates. It then filters for sites that are using App Service Managed Certificates (ASMC) for their custom hostname SSL bindings. These certificates are the ones that could be affected by the upcoming changes. However, please note that this query does not provide complete coverage, as there may be additional configurations impacting public access to your app that are not included here. Ultimately, this query serves as a helpful guide for users, but a thorough review of your environment is recommended. You can copy this query, paste it into [ARG Explorer](https://portal.azure.com/?feature.customPortal=false#view/HubsExtension/ArgQueryBlade), and then click "Run query" to view the results for your environment.
49
+
50
+
```kql
51
+
// ARG Query: Identify App Service sites that commonly restrict public access and use ASMC for custom hostname SSL bindings
52
+
resources
53
+
| where type == "microsoft.web/sites"
54
+
// Extract relevant properties for public access and client certificate settings
### Scenario 2: Site is an Azure Traffic Manager "nested" or "external" endpoint
88
+
If your App Service uses custom domains routed through **Azure Traffic Manager**, you may be impacted if your profile includes **external** or **nested endpoints**. These endpoint types are not supported for certificate issuance or renewal under the new validation.
89
+
90
+
To help identify affected Traffic Manager profiles across your subscriptions, we recommend using [this PowerShell script](https://github.com/nimccoll/NonAzureTrafficManagerEndpoints) developed by the Microsoft team. It scans for profiles with non-Azure endpoints and outputs a list of potentially impacted resources.
91
+
92
+
> [!NOTE]
93
+
> You need at least Reader access to all subscriptions to run the script successfully.
94
+
>
95
+
96
+
To run the script:
97
+
1. Download the [Powershell script from GitHub](https://github.com/nimccoll/NonAzureTrafficManagerEndpoints).
98
+
1. Open PowerShell and navigate to the script location.
99
+
1. Run the script.
100
+
```
101
+
.\TrafficManagerNonAzureEndpoints.ps1
102
+
```
103
+
104
+
### Scenario 3: Site relies on _*.trafficmanager.net_ domains
105
+
This ARG query helps you identify App Service Managed Certificates (ASMC) that were issued to _*.trafficmanager.net domains_. In addition, it also checks whether any web apps are currently using those certificates for custom domain SSL bindings. You can copy this query, paste it into [ARG Explorer](https://portal.azure.com/?feature.customPortal=false#view/HubsExtension/ArgQueryBlade), and then click "Run query" to view the results for your environment.
106
+
107
+
```kql
108
+
// ARG Query: Identify App Service Managed Certificates (ASMC) issued to *.trafficmanager.net domains
109
+
// Also checks if any web apps are currently using those certificates for custom domain SSL bindings
110
+
resources
111
+
| where type == "microsoft.web/certificates"
112
+
// Extract the certificate thumbprint and canonicalName (ASMCs have a canonicalName property)
113
+
| extend
114
+
certThumbprint = tostring(properties.thumbprint),
115
+
canonicalName = tostring(properties.canonicalName) // Only ASMC uses the "canonicalName" property
116
+
// Filter for certificates issued to *.trafficmanager.net domains
117
+
| where canonicalName endswith "trafficmanager.net"
@@ -91,7 +190,7 @@ Some customers may choose to allowlist [DigiCert’s domain validation IPs](http
91
190
For guidance on configuring access restrictions, refer to [set up Azure App Service access restrictions](app-service-ip-restrictions.md).
92
191
93
192
94
-
### Scenario 2: Azure Traffic Manager with nested or external endpoints
193
+
### Scenario 2: Site is an Azure Traffic Manager "nested" or "external" endpoint
95
194
96
195
Only “Azure Endpoints” are supported. “Nested” and “External” endpoints are not supported for ASMC validation.
97
196
@@ -101,7 +200,7 @@ Only “Azure Endpoints” are supported. “Nested” and “External” endpoi
101
200
- For guidance on using App Service as an Azure Traffic Manager endpoint, refer to [App Service and Traffic Manager Profiles](web-sites-traffic-manager.md#app-service-and-traffic-manager-profiles).
102
201
103
202
104
-
### Scenario 3: Use of trafficmanager.net domains
203
+
### Scenario 3: Site relies on _*.trafficmanager.net_ domains
105
204
106
205
Certificates for `*.trafficmanager.net` domains are not supported. If your app relies on this domain and uses ASMC, you need to remove that dependency and secure your app using a custom domain and certificate.
0 commit comments