Skip to content

Commit c5f51a1

Browse files
authored
formatted
1 parent 19e61cb commit c5f51a1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

0_Azure/8_AzureApps/demos/changes-AppServiceManagedCertificates/query-how_to_know_if_your_site_is_not_publicly_accessible.csl renamed to 0_Azure/8_AzureApps/demos/changes-AppServiceManagedCertificates/query-how_to_know_if_your_site_is_not_publicly_accessible.kql

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Resources
1010
thumbprint = tostring(hostSsl.thumbprint)
1111
| extend
1212
isLockedDown = (
13-
publicNetworkAccess == "Disabled" or
14-
clientCertRequired == "Required" or
15-
privateEndpoints > 0 or
16-
ipRestrictions > 0
13+
publicNetworkAccess == "Disabled" or
14+
clientCertRequired == "Required" or
15+
privateEndpoints > 0 or
16+
ipRestrictions > 0
1717
),
1818
isCustom = not(tolower(hostName) endswith ".azurewebsites.net")
1919
| join kind=leftouter (
@@ -24,7 +24,8 @@ Resources
2424
canonical = tostring(properties.canonicalName)
2525
| where canonical != ""
2626
| project certThumb, certName = name, certExpiry = properties.expirationDate, canonical
27-
) on $left.thumbprint == $right.certThumb
27+
)
28+
on $left.thumbprint == $right.certThumb
2829
| where
2930
isLockedDown
3031
or (isCustom and isnotempty(certThumb))

0 commit comments

Comments
 (0)