Hello! We have configured a webhook with a key aut...
# ory-network
n
Hello! We have configured a webhook with a key authentication type in Ory console, and now we have this key in our configuration like:
"config": {
"auth": {
"config": {
"in": "header",
"name": "my-key",
"value": "my-key-value"
},
"type": "api_key"
}
As we store the configuration file in our repository, we do not want to commit this key there. So is it possible not to specify the value of the authentication key in the configuration file and have it only in Ory console? We do not see anything about it in the docs. Thanks!
s
you can do some automated post-processing after the export to remove the secrets
for import, you can insert the values from some secure store like github action secrets
n
Okay, thank you