From a35e0969a2d20acfa5adc60b513c03df5a8b76d0 Mon Sep 17 00:00:00 2001 From: Matthew Rose Date: Thu, 22 Apr 2021 16:48:46 +1000 Subject: [PATCH] Replace --wildcard-only with --resource-type "*" in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4af1c0c1b..3ac8d0bbc 100644 --- a/README.md +++ b/README.md @@ -296,10 +296,10 @@ policy_sentry write-policy --input-file examples/yml/actions.yml # NOTE: Use --fmt yaml or --fmt json to change the output format. Defaults to json for querying # Get a list of actions that do not support resource constraints -policy_sentry query action-table --service s3 --wildcard-only --fmt yaml +policy_sentry query action-table --service s3 --resource-type "*" --fmt yaml # Get a list of actions at the "Write" level in S3 that do not support resource constraints -policy_sentry query action-table --service s3 --access-level write --wildcard-only --fmt yaml +policy_sentry query action-table --service s3 --access-level write --resource-type "*" --fmt yaml # Get a list of all IAM actions across ALL services that have "Permissions management" access policy_sentry query action-table --service all --access-level permissions-management