Open rengler33 opened 9 months ago
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?
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
?