Multiline variables
I need to provide RSA key for one of my services(https://docs.saleor.io/setup/configuration#rsa_private_key)
I generated key via
Converted to one liner via
But on deploy getting an error
How I can add variables like this?
I generated key via
openssl genrsa -out private-key.pem 3072Converted to one liner via
awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' private-key.pemBut on deploy getting an error
How I can add variables like this?
Saleor follows the 12-factor approach, so you can configure Saleor using environment variables.