Apr 15 2019
02:37 AM
- last edited on
Apr 07 2022
05:44 PM
by
TechCommunityAP
Apr 15 2019
02:37 AM
- last edited on
Apr 07 2022
05:44 PM
by
TechCommunityAP
I need to write a log analytics query that can find storage account with supportsHttpsTrafficOnly as false.
Below is the query that I have formed , but it is giving error:
Apr 15 2019 06:43 AM
Solution
AzureActivity | where OperationName == "Create/Update Storage Account" | where Properties has '"supportsHttpsTrafficOnly\\":true' | project PropertiesThat text has a "\" control char, so you need two "\\". Would as where work for you?
Apr 15 2019 06:43 AM
Solution
AzureActivity | where OperationName == "Create/Update Storage Account" | where Properties has '"supportsHttpsTrafficOnly\\":true' | project PropertiesThat text has a "\" control char, so you need two "\\". Would as where work for you?