From 3c12ea81130e5dd0ba53286ad75fe15cc75755f3 Mon Sep 17 00:00:00 2001 From: Alex Thewsey Date: Fri, 4 Aug 2023 02:05:40 +0000 Subject: [PATCH] fix(doc): IAM Actions must be arrays Ref issue #20. Users observed AccessDeniedException when setting IAM policy "Action": "bedrock:*". Per the IAM grammar, it looks like a single string is only valid for "*": Other actions must be enclosed in an array. https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d7f77418..92e08cb8 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ To grant Bedrock access to your identity, you can: { "Sid": "BedrockFullAccess", "Effect": "Allow", - "Action": "bedrock:*", + "Action": ["bedrock:*"], "Resource": "*" } ]