-
Component: Resource Discovery Group We would love to have the ability to filter by tags that have the same key but with multiple values. For an example, right now we could only define the resource discovery like this: resourceDiscoveryGroups:
- name: filtered-logic-apps-landscape
type: LogicApp
criteria:
include:
subscriptions:
- SUBSCRIPTON-ID-ABC
resourceGroups:
- promitor-resource-group-1
tags:
app: promitor So if we had many LogicApp with the tag Some initial approaches I could think of: Approach 1: So my naive thought is changing that to tags:
app: promitor|argocd Approach 2: And the tags would define in list: tags:
app:
- promitor
- argocd This one will break the current setting since it takes a list instead of a string value, we could consider to handle both cases too make it backward compatible. I could take this work / make changes and test but before that we would love some inputs or if there was another way to achieve our goal without making these changes. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Also one more feature we are thinking of is the filter by name with regex matching as well. |
Beta Was this translation helpful? Give feedback.
-
Update: I misunderstood the |
Beta Was this translation helpful? Give feedback.
Update: I misunderstood the
=~
in Azure graph query was for case sensitive. I'm trying the second approach now.