Cache secrets
matthewdevenny opened this issue · 0 comments
matthewdevenny commented
Update the secrets cache to store the whole secret not just the referenced key. For example:
foo:
{
"bravo": "secret-value",
"charlie": "secret-value"
}
{{ (aws "foo" "bravo") }}
currently would only cache foo[bravo]
, should cache contents of foo
instead