Skip to content

Instantly share code, notes, and snippets.

@anthonyclarka2
Last active July 20, 2021 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonyclarka2/c8968122ee8b1f84951e0e83ae05a543 to your computer and use it in GitHub Desktop.
Save anthonyclarka2/c8968122ee8b1f84951e0e83ae05a543 to your computer and use it in GitHub Desktop.
Get or List all permissions for current AWS account or role
#!/bin/bash
# This script gets your current AWS role and dumps the IAM policies associated with that role
# Requires the iam:ListRolePolicies and iam:ListAttachedRolePolicies permissions
# Requires the aws cli and the jq utility
# Creative Commons Attribution-Sharealike: https://creativecommons.org/licenses/by-sa/4.0/
# TODO: compare jq vs the query parameter in the aws cli, see if there's any difference in speed or results
MY_ROLE=$(aws sts get-caller-identity | jq -r '.Arn' | cut -d'/' -f2)
ROLE_POLS=$(aws iam list-role-policies --role-name "${MY_ROLE}" | jq -r '.PolicyNames[]' | tr '\n' ',')
IFS=',' read -r -a ROLE_POLICIES <<< "$ROLE_POLS"
for POLICY in "${ROLE_POLICIES[@]}"
do
echo "${POLICY}"
POL_VER=$(aws iam get-role-policy --policy-name "${POLICY}" --role-name "${MY_ROLE}" | jq -r '.Policy.DefaultVersionId')
aws iam get-role-policy --policy-name "${POLICY}" --role-name MRAD_Ops | jq -r '.PolicyDocument.Statement'
echo
done
echo
echo
ATTD_POLS=$(aws iam list-attached-role-policies --role-name "${MY_ROLE}" | jq -r '.AttachedPolicies[].PolicyName' | tr '\n' ',')
IFS=',' read -r -a ATTD_POLICIES <<< "$ATTD_POLS"
for POLICY in "${ATTD_POLICIES[@]}"
do
echo "${POLICY}"
POL_VER=$(aws iam get-policy --policy-arn arn:aws:iam::aws:policy/"${POLICY}" | jq -r '.Policy.DefaultVersionId')
aws iam get-policy-version --policy-arn arn:aws:iam::aws:policy/"${POLICY}" --version-id "${POL_VER}" | jq -r '.PolicyVersion.Document.Statement'
echo
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment