-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
(lambda): EFS and Lambda create cyclic reference when deployed in separate stacks #18759
Comments
Potential workaround is to not pass |
@LukvonStrom Sounds good, I will write a unit test for it |
It looks like the issue is with this code. We already have a dependency Lambda -> AccessPoint and this is trying to create the security group rules in the AccessPoint stack (AccessPoint -> Lambda) aws-cdk/packages/@aws-cdk/aws-lambda/lib/function.ts Lines 1007 to 1011 in bb8d6f6
This should be updated to be something like this so that the security group rules are added in the lambda stack. if (props.filesystem) {
if (props.filesystem.config.connections) {
this.connections.allowTo(props.filesystem.config.connections, props.filesystem.config.connections.defaultPort);
}
} |
Hey, also running into this issue. Is there an update? |
not sure even if this will be fixed in next year, it starts throwing error just passing env to the lambda |
For those that are struggling for a workaround here, I hacked around this for my needs by using escape hatches (shoutout to @icj217 for the suggestion). Here's what my Python implementation looked like: def repair_function_to_efs_security_groups(func: lambda_.Function, efs: efs.IFileSystem):
"""
When an EFS filesystem is added to a Lambda Function (via the file_system= param)
it automatically sets up networking access between the two by adding
an ingress rule on the EFS security group. However, the ingress rule resource
gets attached to whichever CDK Stack the EFS security group is defined on.
If the Lambda Function is defined on a different stack, it then creates
a circular dependency issue, where the EFS stack is dependent on the Lambda
security group's ID and the Lambda stack is dependent on the EFS stack's file
system object.
To resolve this, we manually remove the ingress rule that gets automatically created
and recreate it on the Lambda's stack instead.
"""
# Collect IDs of all security groups attached to the function
func_sec_groups = {
func_sec_group.security_group_id
for func_sec_group in func.connections.security_groups
}
# Iterate over the security groups attached to EFS
for sec_group in efs.connections.security_groups:
# Iterate over the security group's child nodes
for child in sec_group.node.find_all():
# If this is an ingress rule with a "source" equal to one of
# the function's security groups
if (
isinstance(child, ec2.CfnSecurityGroupIngress) and
child.source_security_group_id in func_sec_groups
):
# Try to remove the node (raise an error if removal fails)
node_id = child.node.id
if not sec_group.node.try_remove_child(node_id):
raise RuntimeError(f'Could not remove child node: {node_id}')
# Finally, configure the connection between the Function and the EFS drive
# which will define the new ingress rule on the Lambda's stack instead.
func.connections.allow_to_default_port(efs) Adapt for your needs. |
Thanks @fivepapertigers for this escape hatch! Here's the same in TS: fileSystem.connections.securityGroups.forEach((fssg) => {
fssg.node.findAll().forEach((child)=> {
if (child instanceof CfnSecurityGroupIngress &&
lambda.connections.securityGroups.some(({ securityGroupId }) => securityGroupId === child.sourceSecurityGroupId)) {
fssg.node.tryRemoveChild(child.node.id);
}
});
});
lambda.connections.allowToDefaultPort(fileSystem); |
…n separate stacks (#28560) This PR fixed an error when deploying EFS and Lambda in separate stacks. ## Cause of the bug Currently, when using EFS from Lambda, deploying EFS and Lambda in separate stacks creates incorrect resource dependencies and cannot be deployed correctly. This error is caused by adding a security group setting in the Function construct to allow EFS and Lambda to communicate correctly. By calling the `Connections.allowDefaultPortFrom` method of the Filesystem in the LambdaStack, IngressRule is created in the scope of the EfsStack. Note that the `remoteRule` flag is false when calling `SecurityGroupBase.addIngressRule` at this time. https://github.com/aws/aws-cdk/blob/dde59755cb71aee73a58f3b2c2068f2ae01e9b72/packages/aws-cdk-lib/aws-lambda/lib/function.ts#L1416 https://github.com/aws/aws-cdk/blob/dde59755cb71aee73a58f3b2c2068f2ae01e9b72/packages/aws-cdk-lib/aws-ec2/lib/connections.ts#L157 https://github.com/aws/aws-cdk/blob/dde59755cb71aee73a58f3b2c2068f2ae01e9b72/packages/aws-cdk-lib/aws-ec2/lib/security-group.ts#L84 Here is the minimal code to reproduce this error without EFS and Lambda. ```ts #!/usr/bin/env node import 'source-map-support/register'; import { App, Stack, StackProps } from 'aws-cdk-lib'; import { Construct } from 'constructs'; import * as ec2 from 'aws-cdk-lib/aws-ec2'; export class EfsStack extends Stack { public vpc: ec2.Vpc; public efsSg: ec2.SecurityGroup; constructor(scope: Construct, id: string, props?: StackProps) { super(scope, id, props); this.vpc = new ec2.Vpc(this, 'Vpc'); this.efsSg = new ec2.SecurityGroup(this, 'SecurityGroup', { vpc: this.vpc, allowAllOutbound: true, }); } } interface LambdaStackProps extends StackProps { vpc: ec2.Vpc; efsSg: ec2.SecurityGroup; } export class LambdaStack extends Stack { constructor(scope: Construct, id: string, props: LambdaStackProps) { super(scope, id, props); const lambdaSg = new ec2.SecurityGroup(this, 'SecurityGroup', { vpc: props.vpc, allowAllOutbound: true, }); // Since `remoteRule` flag is set to false here, IngressRule is deployed in EfsStack scope. props.efsSg.addIngressRule(lambdaSg, ec2.Port.tcp(2049), '', false); } } const app = new App(); const efsStack = new EfsStack(app, 'EfsStack'); const lambdaStack = new LambdaStack(app, 'LambdaStack', { vpc: efsStack.vpc, efsSg: efsStack.efsSg, }); ``` By calling the `SecurityGroupBase.addIngressRule` method with the `remoteRule` flag true, the IngressRule will be deployed in the scope of the Lambda stack and the deployment will complete successfully. ## Changes Fixed the SecurityGroup Rule configuration part in the Function construct to fix this error. By changing the Function construct to call the `Connections.allowTo` method, the `remoteRule` flag is set to true when `allowTo` method calls `allowFrom` method and the EFS Security Group Ingress Rule will be correctly created in the scope of the Lambda stack. https://github.com/aws/aws-cdk/blob/dde59755cb71aee73a58f3b2c2068f2ae01e9b72/packages/aws-cdk-lib/aws-ec2/lib/connections.ts#L139 https://github.com/aws/aws-cdk/blob/dde59755cb71aee73a58f3b2c2068f2ae01e9b72/packages/aws-cdk-lib/aws-ec2/lib/connections.ts#L141 Closes #18759 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
What is the problem?
EFS (particularly AccessPoint) and Lambda create cyclic reference when deployed in separate stacks.
Very related: #5760, #10942, #11245.
All of which are
P1
. Check the reproducible code in those issues as well.Reproduction Steps
Here is a working example:
The code breaks if
Function
is deployed in separate stack and theAccessPoint
is passed in props, with the following error:For more code insight check similar issues: #5760, #10942, #11245.
I can add simple self-contained reproducible code but it should be simple enough to infer.
What did you expect to happen?
Should work. We can pass
Vpc
in props across stacks, whyEFS
and others fail? The error is confusing as well.What actually happened?
Fails as described above.
CDK CLI Version
2.10
Framework Version
No response
Node.js Version
14 LTS
OS
Mac
Language
Typescript
Language Version
TS 4.x
Other information
No response
The text was updated successfully, but these errors were encountered: