-
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.
fix: Add Premium tier to accepting tiers (#441)
Co-authored-by: Zach Trocinski <[email protected]> Co-authored-by: Eric Henry <[email protected]>
- Loading branch information
1 parent
4f74227
commit e556f2d
Showing
2 changed files
with
6 additions
and
7 deletions.
There are no files selected for viewing
9 changes: 4 additions & 5 deletions
9
...e-resources/ContainerService/managedClusters/kql/0611251f-e70f-4243-8ddd-cfe894bec2e7.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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
// Azure Resource Graph Query | ||
// Returns all AKS clusters not running on the Standard tier | ||
// Returns all AKS clusters not running on the Standard tier or the Premium tier. | ||
resources | ||
| where type == "microsoft.containerservice/managedclusters" | ||
| where sku.tier != "Standard" | ||
| project recommendationId="0611251f-e70f-4243-8ddd-cfe894bec2e7", id, name, tags, param1=strcat("skuName: ", sku.name), param2=strcat("skuTier: ", sku.tier) | ||
|
||
| where type =~ "Microsoft.ContainerService/managedClusters" | ||
| where sku.tier !in~ ("Standard", "Premium") | ||
| project recommendationId = "0611251f-e70f-4243-8ddd-cfe894bec2e7", id, name, tags, param1 = strcat("skuName: ", sku.name), param2 = strcat("skuTier: ", sku.tier) |
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