mirror of
https://github.com/hashicorp/vault-action.git
synced 2026-07-02 07:29:32 +00:00
parent
892a26828f
commit
32ed431167
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ const outputMap = {
|
|||
cert: { key: 'certificate', tx: (v) => v },
|
||||
key: { key: 'private_key', tx: (v) => v },
|
||||
ca: { key: 'issuing_ca', tx: (v) => v },
|
||||
ca_chain: { key: 'ca_chain', tx: (v) => v.join('\n') },
|
||||
ca_chain: { key: 'ca_chain', tx: (v) => v?.join('\n') ?? '' },
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -78,4 +78,4 @@ async function getCertificates(pkiRequests, client) {
|
|||
|
||||
module.exports = {
|
||||
getCertificates,
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue