Luzifer / vault-patch

Very small utility to "patch" a Vault key

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Luzifer / vault-patch

vault-patch is a very small utility to "patch" a Vault key. In case you don't want to replace the whole data stored in that key but only want to modify one (or more) specific data pair(s) this can come handy:

# vault read secret/test
Key                     Value
---                     -----
refresh_interval        768h0m0s
field1                  test1
field2                  test2


# vault-patch secret/test field2=test4 field3=test3
INFO[0000] Data successfully written to key "secret/test"

# vault read secret/test
Key                     Value
---                     -----
refresh_interval        768h0m0s
field1                  test1
field2                  test4
field3                  test3

As you can see only the data given in the command was touched and the field1 was kept as it was before.

About

Very small utility to "patch" a Vault key

License:Apache License 2.0


Languages

Language:Go 61.9%Language:Shell 34.2%Language:Makefile 3.9%