Replies: 1 comment
-
Created a Github Issue here. Facing this too - #28170 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I upgraded my CDK package version today from 2.92.0 to 2.102.0. One of the stacks in my application is a Lambda function that is defined with DockerImageFunction. The function deployed fine with 2.92.0; however, with 2.102.0 it throws the following error on build:
I was specifying
allowAllOutbound
(with a value oftrue
, which is supposed to be the default anyway). If I removeallowAllOutbound
from the specification, the error goes away and it appears, fromcdk diff
at least, that there are no changes to the function. For reference, I am specifying the following optional parameters in the properties:I don't know if this new behavior is a bug, an undocumented behavior change, or something that's always been wrong with my configuration but somehow worked until now. Based on where it's coming from I suspect it has something to do with me specifying the networking details, but the documentation doesn't indicate
allowAllOutbound
is incompatible with anything. What's going on here?Beta Was this translation helpful? Give feedback.
All reactions