docs: document AWS (Assume Role) credential on Bedrock nodes#4495
Open
its-imad wants to merge 1 commit into
Open
docs: document AWS (Assume Role) credential on Bedrock nodes#4495its-imad wants to merge 1 commit into
its-imad wants to merge 1 commit into
Conversation
✅ Deploy Preview for n8n-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
No description provided. |
|
Thanks @its-imad! We'll hold off on reviewing this until the PR is ready to go in the main repo. |
Contributor
There was a problem hiding this comment.
No issues found across 3 files
Architecture diagram
sequenceDiagram
participant User as User (n8n UI)
participant Node as Bedrock Node
participant Creds as AWS (Assume Role) Credential
participant STS as AWS STS
participant Bedrock as AWS Bedrock API
Note over User, Bedrock: Node Configuration & Authentication
User->>Node: Selects Authentication Method
alt NEW: AWS (Assume Role)
Node->>Creds: Request temporary credentials
Creds->>STS: NEW: Call AssumeRole(Role ARN)
STS-->>Creds: Return Temp Access Key & Session Token
Creds-->>Node: Provide temporary session
else AWS (IAM)
Node->>Node: Use static Access Key / Secret
end
Note over Node, Bedrock: Model Selection Flow
Node->>Bedrock: CHANGED: bedrock:ListFoundationModels
alt User has ListFoundationModels permission
Bedrock-->>Node: Return model list
Node-->>User: Display models in dropdown
else NEW: Missing ListFoundationModels permission
Bedrock-->>Node: 403 Forbidden
Note over User, Node: UI shows empty dropdown
User->>Node: NEW: Switch Model field to Expression mode
User->>Node: NEW: Manually enter Model ID (e.g., titan-embed-text-v1)
end
Note over Node, Bedrock: Execution Flow
User->>Node: Execute Workflow
Node->>Bedrock: Invoke Model / Generate Embeddings
Bedrock-->>Node: Inference/Vector Result
Node-->>User: Data output
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Authenticationparameter (AWS (IAM)/AWS (Assume Role)) on the AWS Bedrock Chat Model and Embeddings AWS Bedrock nodesbedrock:ListFoundationModelspermission is missingLinear ticket
https://linear.app/n8n/issue/DOC-1825/docs-document-aws-assume-role-credential-on-bedrock-nodes
Notes
⏳ pending-dev — blocked on n8n-io/n8n#28663 merging. Do not merge this PR until that feature PR is released.