-
-
Notifications
You must be signed in to change notification settings - Fork 87
Ability to filter non-mutable requests #38
Comments
Hi Pat, Thanks for raising. Could I confirm that this would be for the Boto3 output and/or the other SDKs? Fair warning, this one could take a little bit. |
I've only looked at the CLI output so far, but this could be helpful for all of the output formats. How do you currently block mutable requests? |
The extension is 100% passive, so only looks at the calls you are making with your role. I've manually mapped which calls are or aren't mutable on a per-method basis, but it's not easy to use for the reverse due to the way its originally coded. |
have a link to the section of the code with the manual mapping? |
In bg.js, anywhere that has:
Which translates to, "if the block mutable requests option is on, show a popup and block the request". Looking at it now though, I also realise I have a |
From Option to hide ec2_client.describe_ actions (issue #41, referenced above) Boto3 output generates a high number of This comes out very noisy if performing an action through a wizard. This is especially noticeable with autocomplete form fields, such as the "add tags" form when launching an EC2 instance - a new These are read-only commands which don't write or display their output anywhere. I'm sure these are useful to someone designing a user flow on top of AWS Console, but I imagine most users are only interested in the commands that alter their AWS resources. Would love a settings parameter or on-page filter to hide/remove all Better yet, the ability to filter/hide output based on regex or something. |
Many read-only requests generated from navigating the console that people might want to filter out. This reduces output and makes it easier to identify which modifying requests are made.
The text was updated successfully, but these errors were encountered: