'How does Octopus deploy interact with hashicorp vault to get secrets and certificates?
- how to create secrets and certs in hashivault?
- How to pull those secrets into my octopus deploy?
Solution 1:[1]
Looking at the documentation, you can't write secrets in Vault from your pipeline. A part of your pipeline, maybe a Terraform or Ansible, will generate secrets and store them in Vault, for another part of the pipeline to retrieve them later.
Once you have secrets to retrieve, you will need to
I suggest that you start write and reading secrets and certificate from the command line first, to quickly get a sense of how Vault works. Something like:
vault kv put secret/octopus/dev/pipeline-1 my-secret=hello123
vault kv get secret/octopus/dev/pipeline-1
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ixe013 |
