Skip to content

Commit

Permalink
Update b376281d-bfec-4695-8f90-9a44544fdfa4.kql
Browse files Browse the repository at this point in the history
  • Loading branch information
ripadrao authored Jan 7, 2025
1 parent 172dd36 commit df9395d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
// Azure Resource Graph Query
// Provides a list of all deployments for AI search with less than two replicas

resources
| where type == "microsoft.search/searchservices"
| extend replicaCount = properties['replicaCount']
| where properties['replicaCount'] < 2
| project recommendationId = "b376281d-bfec-4695-8f90-9a44544fdfa4", name, id, param1 = strcat(properties['replicaCount']) , param2 = strcat(location)
| project recommendationId = "b376281d-bfec-4695-8f90-9a44544fdfa4", name, id, param1 = strcat(properties['replicaCount']) , param2 = strcat(location)
| order by id asc

0 comments on commit df9395d

Please sign in to comment.