-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add recommendation for Service Bus minimum TLS version (#437)
Co-authored-by: Zach Trocinski <[email protected]>
- Loading branch information
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
azure-resources/ServiceBus/namespaces/kql/f075a1bd-de9e-4819-9a1d-1ac41037a74f.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Azure Resource Graph Query | ||
// Provides a list of Service Bus Namespace resources that have the lower minimum TLS version. | ||
resources | ||
| where type =~ "Microsoft.ServiceBus/namespaces" | ||
| where properties.minimumTlsVersion in ("1.0", "1.1") | ||
| project | ||
recommendationId = "f075a1bd-de9e-4819-9a1d-1ac41037a74f", | ||
name, | ||
id, | ||
tags, | ||
param1 = strcat("minimumTlsVersion: ", properties.minimumTlsVersion) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters