We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the Within keyword performs a match of a field against one or many objects.
Within
The match is exact with either case sensitive or insensitive options available.
For example:
Rule 'ResourceExample' { Within 'ResourceType' @( # Compute: Batch 'Microsoft.Batch/batchAccounts' 'Microsoft.Batch/batchAccounts/applications' 'Microsoft.Batch/batchAccounts/applications/versions' 'Microsoft.Batch/batchAccounts/certificates' 'Microsoft.Batch/batchAccounts/pools' ) }
Would like to do something more like:
Rule 'ResourceExample' { Within 'ResourceType' -Like @( # Compute: Batch 'Microsoft.Batch/batchAccounts' 'Microsoft.Batch/batchAccounts/*' ) }
The text was updated successfully, but these errors were encountered:
Within with wildcard match #272
c8c7682
Within with wildcard match #272 (#273)
5dbe150
BernieWhite
Successfully merging a pull request may close this issue.
Currently the
Within
keyword performs a match of a field against one or many objects.The match is exact with either case sensitive or insensitive options available.
For example:
Would like to do something more like:
The text was updated successfully, but these errors were encountered: