pub fn decrypt(
input: &str,
output: &str,
password: &str,
keys: &[String],
) -> Result<(), Box<dyn Error>>Expand description
Decrypt all (or a filtered subset of) vault-encrypted values in a JSON or YAML file.
input: path to the input fileoutput: path to write the result, or"stdout"to print to stdoutpassword: vault passwordkeys: dot-notation key paths to decrypt; empty means all encrypted values