Hello I am getting the following error on sls deploy:
ServerlessError: Invalid variable reference syntax for variable self.custom.config.STORAGE_TRIGGER_CONNECTION. You can only reference env vars, options, & files. You can check our docs for more info.
[440](https://github.com/blah/blah-backend/actions/runs/4128229789/jobs/7132408832#step:6:441) at Variables.getValueFromSource (/home/runner/work/blah-backend/blah-backend/node_modules/serverless/lib/classes/Variables.js:587:32)
Using the following version:
# sls -version
Framework Core: 1.68.0
Plugin: 3.8.4
SDK: 2.3.2
Components: 2.34.9
I know it’s way outdated but we have some limitations with deploying via serverless in Azure that the plugin does not yet solve for us so we are forced below version 2.
The serverless.yml portion that is relevant:
environment:
AzureWebJobsStorage: ${self.custom.config.STORAGE_TRIGGER_CONNECTION}
and the custom config references the following:
STORAGE_TRIGGER_CONNECTION: "@Microsoft.KeyVault(VaultName=some-vault;SecretName=supersecret-storageconnection)"
Apparently the @ character at the beginning of the string value is causing the issue. Any suggestions for getting around this error?