Describe the solution you'd like
Sometimes customer forget to renew AppService domain because autoRenew setting is false. If we check the setting and expirationTime in advance, they may avoid the domain issue. It may cause Azure DNS issue and certification issue.
Describe alternatives you've considered
We can check both of settings using Resource Graph can check both of settings using Resource Graph. How about it alerts if autoRenew is false or expirationTime is within 3 month. We should check the contact list like email whether customer can receive the notification.
resources
| where type == "microsoft.domainregistration/domains"
"autoRenew": false,
"expirationTime": "2025-03-11T12:24:57Z",
Describe the solution you'd like
Sometimes customer forget to renew AppService domain because autoRenew setting is false. If we check the setting and expirationTime in advance, they may avoid the domain issue. It may cause Azure DNS issue and certification issue.
Describe alternatives you've considered
We can check both of settings using Resource Graph can check both of settings using Resource Graph. How about it alerts if autoRenew is false or expirationTime is within 3 month. We should check the contact list like email whether customer can receive the notification.
resources
| where type == "microsoft.domainregistration/domains"