Using ssh default profile(user/password/port) without host (#10076)

This commit is contained in:
ianaflous 2025-02-25 00:14:27 +01:00 committed by GitHub
parent ab87099b8b
commit 934cdff0f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -195,7 +195,13 @@ export class VaultService {
if (!vault) {
return null
}
return vault.secrets.find(s => s.type === type && this.keyMatches(key, s)) ?? null
let vaultSecret = vault.secrets.find(s => s.type === type && this.keyMatches(key, s))
if (!vaultSecret) {
// search for secret without host in vault (like a default user/password used in multiple servers)
key['host'] = null
vaultSecret = vault.secrets.find(s => s.type === type && this.keyMatches(key, s))
}
return vaultSecret ?? null
}
async addSecret (secret: VaultSecret): Promise<void> {