fugue / credstash

A little utility for managing credentials in the cloud
Apache License 2.0
2.06k stars 214 forks source link

[feature] can we have feature to use template ? #206

Open ozbillwang opened 6 years ago

ozbillwang commented 6 years ago

can we have feature to use template ? Same as this :

https://github.com/winebarrel/gcredstash#use-template

$ credstash getall
{
  "foo.bar": "100",
  "foo.baz": "xxx"
}

$ cat template.txt
foo.bar: {{get "foo.bar"}}
foo.baz: {{get "foo.baz"}}

$ credstash template template.txt
foo.bar: 100
foo.baz: xxx