-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
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
fix(lambda-python): allowPublicSubnet and filesystem not supported #10022
Conversation
Shouldn't this PR move both |
Fixes #10018. #9468 added a flag (`allowPublicSubnet`) to `FunctionProps`, but `PythonFunction` and `NodejsFunction` props derive from `FunctionOptions`. This renders these derived function constructs unable to bypass the public subnet check that occurs in the base `Function` construct. We can resolve this issue by moving `allowPublicSubnet` to `FunctionOptions`. I also moved `filesystem` up to `FunctionOptions` while I was here.
Re-added the python integration test to pass the linter check. |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from master and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Fixes #10018.
Fixes #10027.
#9468 added a flag (
allowPublicSubnet
) toFunctionProps
, butPythonFunction
andNodejsFunction
props derive fromFunctionOptions
. This renders these derived function constructs unable to bypass the public subnet check that occurs in the baseFunction
construct. We can resolve this issue by movingallowPublicSubnet
toFunctionOptions
.I also moved
filesystem
up toFunctionOptions
while I was here.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license