Hi guys, I have a question.
In documentation
https://seed.run/docs/storing-secrets.html it said, that If you were to define a secret variable, and the same variable is defined in the yaml file; the value defined in serverless.yml is overridden.
Well, it didn't work for us. We have
provider: {
environment: {
PROVIDER_MAIN: '...',
...
}
}
and also declared PROVIDER_MAIN in SEED's env variables.
Still, console.log(process.env.PROVIDER_MAIN) gives me: undefined
May be that's not the case for serverless.ts?
Or any other ideas?