Skip to content

Commit f21faa6

Browse files
committed
fix(IAM): add kms:DescribeKey to default IAM policies
1 parent e44214f commit f21faa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ape_aws/iam/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class IamClient(Session):
9898
KEY_ACCESS_POLICY = dict(
9999
Sid="ApeAWSv1",
100100
Effect="Allow",
101-
Action=["kms:ListAliases", "kms:Sign", "kms:Verify", "kms:GetPublicKey"],
101+
Action=["kms:ListAliases", "kms:Sign", "kms:Verify", "kms:GetPublicKey", "kms:DescribeKey"],
102102
Resource="*",
103103
)
104104

0 commit comments

Comments
 (0)