It would be super useful, especially when trying to make sure different tenants are kept in sync, to reverse the keyword replacements on export. It would never be foolproof if someone specifies an overly broad keyword, but it would be a useful feature, certainly for me!
I imagine that:
{
"example_key": "abc123"
}
when exported with a config file including:
{
"AUTH0_KEYWORD_REPLACE_MAPPINGS": {
"SEKRIT_KEY": "abc123"
}
}
Would become:
{
"example_key": "##SEKRIT_KEY##"
}
It would be super useful, especially when trying to make sure different tenants are kept in sync, to reverse the keyword replacements on export. It would never be foolproof if someone specifies an overly broad keyword, but it would be a useful feature, certainly for me!
I imagine that:
{ "example_key": "abc123" }when exported with a config file including:
{ "AUTH0_KEYWORD_REPLACE_MAPPINGS": { "SEKRIT_KEY": "abc123" } }Would become:
{ "example_key": "##SEKRIT_KEY##" }