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
It seems that the automatic_layer = true doesn't work when deploying with cdk deploy.
cdk deploy
here is my runtime/.chalice/config.json:
runtime/.chalice/config.json
{ "version": "2.0", "app_name": "campster", "stages": { "dev": { "api_gateway_stage": "api", "automatic_layer": true, "lambda_functions": { "api_handler": { "environment_variables": { "APP_TABLE_NAME": "" } } } } } }
When I run cdk deploy, I see a lambda that looks like this (0 layers):
Is layering to be expected when using cdk deploy?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that the automatic_layer = true doesn't work when deploying with
cdk deploy
.here is my
runtime/.chalice/config.json
:When I run
cdk deploy
, I see a lambda that looks like this (0 layers):Is layering to be expected when using
cdk deploy
?The text was updated successfully, but these errors were encountered: