Closed
Conversation
Contributor
There was a problem hiding this comment.
No issues found across 9 files
Architecture diagram
sequenceDiagram
participant User as User (Browser)
participant UI as n8n Editor UI
participant Server as n8n Backend (CLI)
participant Secrets as External Secrets Manager
participant Vault as HashiCorp Vault Service
participant DB as Database
Note over User,Vault: External Secrets Configuration (Multi-Connection Support)
User->>UI: Configure Vault Connection (ID: "prod-vault")
UI->>Server: POST /external-secrets/vault/config
Server->>DB: Save connection credentials & URL
Server-->>UI: Confirm Connection Created
Note over User,Vault: Workflow Execution & Secret Retrieval
User->>UI: Execute Workflow
UI->>Server: Trigger Workflow
Server->>Server: Initialize Workflow Context
loop For each node requiring secrets
Server->>Secrets: Request Secret (Key: "API_KEY", Provider: "prod-vault")
Note over Secrets: CHANGED: Resolve specific connection<br/>from multiple configured Vaults
Secrets->>Vault: Authenticate (using "prod-vault" credentials)
Vault-->>Secrets: Auth Token
Secrets->>Vault: GET /v1/secret/data/API_KEY
Vault-->>Secrets: Secret Value (decrypted)
Secrets-->>Server: Return Secret Value
Server->>Server: Inject into Node Execution
end
Server-->>UI: Return Execution Results
UI-->>User: Display Workflow Success/Data
❌ 1 Tests Failed:
View the top 1 failed test(s) by shortest run time
To view more test analytics, go to the Test Analytics Dashboard |
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.
2.10.2 (2026-02-25)
Bug Fixes