We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently running locally does not work as expected due to incompatibility with serverless-offline and ssm: variables - dherault/serverless-offline#1647. A suggested solution is to use this package https://www.serverless.com/plugins/serverless-offline-ssm
serverless-offline
ssm:
The text was updated successfully, but these errors were encountered:
Workaround is to comment SSM vars in serverless.yml. E.g.
serverless.yml
functions: handler: handler: src/index.handler memorySize: 256 timeout: 900 # environment: # DISCOGS_USER_TOKEN: ${ssm:/discogs-market-monitor/discogs_user_token} # SENDGRID_API_KEY: ${ssm:/discogs-market-monitor/sendgrid_api_key} # DISCOGS_USERNAME: ${ssm:/discogs-market-monitor/discogs_username} # SHIPS_FROM: ${ssm:/discogs-market-monitor/ships_from} # DESTINATION_EMAIL: ${ssm:/discogs-market-monitor/destination_email} # SENDER_EMAIL: ${ssm:/discogs-market-monitor/sender_email}
Sorry, something went wrong.
Using parameter store secrets as done in https://github.com/jch254/market-monitor-api also allows running locally
No branches or pull requests
Currently running locally does not work as expected due to incompatibility with
serverless-offline
andssm:
variables - dherault/serverless-offline#1647. A suggested solution is to use this package https://www.serverless.com/plugins/serverless-offline-ssmThe text was updated successfully, but these errors were encountered: