Skip to content

Missing IAM inline policy JSON in Amazon Bedrock agent tutorial (Step 2, step 26)

0

In the Amazon Bedrock agent tutorial Step 2 (https://docs.aws.amazon.com/bedrock/latest/userguide/agent-tutorial-step2.html), step 26 instructs the user to "paste the following policy" into the inline policy JSON editor, but the actual policy JSON is missing from the page — it jumps directly to "Choose Next."

Based on the context (granting the agent's IAM role permission to invoke the Lambda function), the intended policy should be:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "lambda:InvokeFunction",
      "Resource": "arn:aws:lambda:<region>:<account-id>:function:<your-function-name>"
    }
  ]
}

Could the docs team confirm this and update the page?

asked a month ago31 views
1 Answer
0
Accepted Answer

Hi Dhairya,

Thanks for your question to re:Post. You can submit AWS documentation issues directly to the documentation team by using the link that says "Provide feedback" in the lower right-hand pane on any documentation page under "Did this page help you?". This will route your request to the team that owns that particular set of content.

Enter image description here

I went ahead and submitted this feedback through that link for you, as it does appear that the policy is missing from step 26. Check back to the page shortly to see any updates.

Thanks,

Jen

AWS
EXPERT
answered a month ago
EXPERT
reviewed a month ago
  • Thank you for the answer, Jen

    I have performed the task you mentioned.

    Regards, Dhairya

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.