AWS Filtering
Filtering on tags
Rule structure:
resource:
type: integration
service: aws
filters:
tag:
effect: keep|remove|removeAll
key: <tag key>
pattern: <regex pattern>Allow requesting only policies and permission sets with the tag "environment" set to "dev" :
resource:
type: integration
service: aws
filters:
tag:
effect: keep
key: environment
pattern: ^dev$.Filtering on IAM groups
Rule structure:
Allow requesting any IAM groups except for "Admin" :
Filtering on permission sets
' Rule structure:
Allow requesting only permission sets with "project-1" in the name:
Filtering on policies
Rule structure:
Allow requesting only AmazonS3 predefined policies
Filtering on resources
Rule structure:
Allow requesting only S3 resources
Allow requesting any resource except for IAM resources
Allow requesting any resource containing "project-1" in the name
Allow requesting only S3 buckets with names starting with "dev"
Allow requesting any resource except for the S3 bucket named "top-secret-bucket"
Last updated