Created
April 10, 2024 20:30
-
-
Save jasonmimick-aws/7330a17e15668b71933cb0609ad01c21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
ROLE_NAME="DatadogIntegrationRole" | |
TEMP=$(mktemp) | |
aws iam get-role --role-name DatadogIntegrationRole | jq '.Role.AssumeRolePolicyDocument' > "${TEMP}" | |
cat "${TEMP}" | |
EFFECT=$(cat "${TEMP}" | jq '.Statement[0].Effect') | |
echo "Effect=${EFFECT}" | |
#exit 1 | |
if [ "${EFFECT}" == "\"Allow\"" ] ; then | |
echo "Turning OFF ${ROLE_NAME} was Allow, setting to Deny." | |
TEMP_OFF=$(mktemp) | |
cat "${TEMP}" | jq '.Statement[0].Effect = "Deny"' > "${TEMP_OFF}" | |
aws iam update-assume-role-policy \ | |
--role-name "${ROLE_NAME}" \ | |
--policy-document "file://${TEMP_OFF}" | |
cat "${TEMP_OFF}" | |
rm "${TEMP_OFF}" | |
elif [ "${EFFECT}" == "\"Deny\"" ] ; then | |
echo "Turning ON ${ROLE_NAME} was Deny, setting to Allow." | |
TEMP_ON=$(mktemp) | |
cat "${TEMP}" | jq '.Statement[0].Effect = "Allow"' > "${TEMP_ON}" | |
aws iam update-assume-role-policy \ | |
--role-name "${ROLE_NAME}" \ | |
--policy-document "file://${TEMP_ON}" | |
cat "${TEMP_ON}" | |
rm "${TEMP_ON}" | |
else | |
echo "Effect ${EFFECT} unknown" | |
fi | |
rm "${TEMP}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment