Hello all,
I am looking to have a Vault secret be put into my volume creation much like I would be able to template data into a file in a nomad job.
Specifically I would like to use a secret that is in Vault for secrets.userKey
in the volume configuration.
I don’t think it will work to put:
secrets {
userID = "my_user"
userKey = {{ with secret cephCSI }}{{ .Data.data.userKey }}{{ end }}
}
So I’m looking to see if there’s another way to template this out by using the nomad integration. Thanks!