about summary refs log tree commit diff
path: root/templater/pass.go
AgeCommit message (Collapse)AuthorFilesLines
2019-09-04 chore: Update copyright headers to 2019Vincent Ambo1-1/+1
2018-03-09 refactor: Remove old error handling libraryVincent Ambo1-12/+1
Removes the old error handling library and switches to plain fmt.Errorf calls. There are several reasons for this: * There are no useful types or handling here anyways, so output format is the only priority. * Users don't care about getting stacktraces. * My emotional wellbeing. Fin de siècle.
2017-11-21 feat(license): Relicense under GPLv3Vincent Ambo1-2/+12
All further kontemplate source code changes and releases will happen under the GPLv3. Previous releases are still available under the MIT license.
2017-02-20 fix pass: Trim leading & trailing whitespaceVincent Ambo1-1/+4
2017-02-09 feat templater: Add 'pass' lookup functionVincent Ambo1-0/+32
This introduces support for looking up secret values in the 'pass' command line tool (https://www.passwordstore.org/). Values like passwords can be interpolated from pass and even more complex structures like certificates for Kubernetes Secrets can be retrieved and base64- encoded as necessary. Fixes #2