Skip to content

Commit

Permalink
Bug fix for issue EFS SG Lookup (#774)
Browse files Browse the repository at this point in the history
Authored-by: Rustam <[email protected]>
  • Loading branch information
lorienx0 authored Aug 12, 2024
1 parent 08338d1 commit d284ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecs_composex/efs/efs_ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def looked_up_efs_family_hook(
sg_id = efs.add_attribute_to_another_stack(family.stack, FS_MNT_PT_SG_ID, settings)
add_parameters(family.template, [sg_id["ImportParameter"]])
add_security_group_ingress(
family.stack, efs.logical_name, Ref(sg_id["ImportParameter"]), 2049
family, efs.logical_name, Ref(sg_id["ImportParameter"]), 2049
)
family.stack.Parameters.update(
{sg_id["ImportParameter"].title: sg_id["ImportValue"]}
Expand Down

0 comments on commit d284ef5

Please sign in to comment.