Minify IAM actions using wildcards to save up as many characters as possible without granting unintended permissions
Project description
IAM Policies minifier
Optimize long AWS IAM policies by strategically using wildcards, reducing the number of characters, and maintaining the intended scope of permissions.
Background
When crafting long and complex AWS IAM customer-managed policies, the 6,144 character limit imposed by AWS can become a problem. While one approach to address this limitation is to split a long policy into multiple customer-managed policies, this may not always be the ideal solution. In such scenarios, it's possible to reduce the length of a policy by strategically using wildcards where possible.
The iam-minify
-er traverses through a list of IAM actions defined in a policy, identifies optimal locations for wildcards, and effectively reduces the character count while maintaining the intended permission scope.
Instalation
python -m pip install iam-minify
Usage & features
iam-minify example-policy.json
The script will traverse though all policy statemends defined in the policy document, and optimise IAM actions within the same statement. It processes different policy statements in isolation in order to not grant unintended access to resources.
Limitations
- Actions in the supplied IAM policy documents can contain wildcards only at the end of the string. Wildcards anywhere else than at the end of the string are currently not supported. E.g.,
s3:Get*
will work whiles3:*Object
will throw an error.
Example
Consider the following IAM policy:
// ./example-policy.json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAccessPoints",
"s3:ListAccessPointsForObjectLambda",
"s3:ListAllMyBuckets",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListBucketVersions",
"s3:ListJobs",
"s3:ListMultipartUploadParts",
"s3:ListMultiRegionAccessPoints"
"s3:ListStorageLensConfigurations",
],
"Resource": "*"
}
]
}
Executing iam-minify example-policy.json
will output the following result:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListAccessP*",
"s3:ListAl*",
"s3:ListB*",
"s3:ListJ*",
"s3:ListM*",
"s3:ListStorageLensC*"
],
"Resource": "*"
}
]
}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for iam_minify-0.0.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c5e320735394b249ae22e7ed71c454336031b484aab53f1b28a8b8b0909a9cf |
|
MD5 | b5ec55c505bb02891d0baff850fd6248 |
|
BLAKE2b-256 | b90f7fc2c9d13e7f3d145cc165a7f33bcac8cc02b19dfc4b2e1f4b02a1663045 |