Ecitperbo
Ecitperbo
I faced the same issue. Here is a workaround if it can help someone. - It applies only when deploying with `chalice package --pkg-format terraform`. Run the python script after...
Our CI/CD pipeline is using Terraform. Here is a workaround for automatic deployment in such case: https://github.com/aws/chalice/issues/2031#issuecomment-1900711686
An intermediary solution is to commit `config.json.default` like this: ``` { "stages": { "prod": { "environment_variables": { "MY_SECRET_KEY": "$MY_SECRET_KEY" } } } } ``` Then, just before plan+deploy call (In...
`{proxy+}` concept is documented [here](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html#lambda-proxy-integration-with-proxy-resource). It is a concept valid for projects using AWS API gateway lambda integration, like chalice.