We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic question. I don't see any examples on handling this scenario. Thanks
The text was updated successfully, but these errors were encountered:
I figured out how to do this. I added an async run command to the client to handle this.
vaultClient.run = async () => { try { const status = await vaultClient.status() if (!status.initialized) { await vaultClient.init({ secret_shares: 1, secret_threshold: 1 }) } if (status.sealed) { await vaultClient.unseal({ secret_shares: 1, key: config.vault.key }) } logger.success('node-vault', 'Vault initialized and unsealed') } catch (err) { logger.error('node-vault', err.message) } }
Sorry, something went wrong.
Please add this to the documentation. There are lots of missing things in the docs that leaves us lost and unsure what to do.
No branches or pull requests
Basic question. I don't see any examples on handling this scenario.
Thanks
The text was updated successfully, but these errors were encountered: