Azure Kusto Query Language hot tip: Listing your private deleted links

When securing your Azure environment, the use of private links is a requirement to keep all traffic among your different Azure services within your borders in Azure. In this Kusto Query Language, we will list any deleted private links on your subscription, which is a helpful query to have in your toolbox.

The results of the query are depicted in the image below.

azure kusto dleted private links

The query required to provide that output is listed below.

AzureActivity
| where TimeGenerated > ago(24h)
| where OperationNameValue matches regex '^*.PRIVATEENDPOINTCONNECTIONPROXIES/DELETE.*'
| where ActivityStatusValue == 'Success'

 

About The Author

Leave a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Scroll to Top