Skip to content

Commit cf90cd4

Browse files
authored
add tags to cfn read security groups (#12408)
1 parent 5d2e542 commit cf90cd4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

localstack-core/localstack/services/ec2/resource_providers/aws_ec2_securitygroup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ def model_from_description(sg_description: dict) -> dict:
6565
"GroupDescription": sg_description.get("Description"),
6666
"SecurityGroupEgress": [],
6767
"SecurityGroupIngress": [],
68+
"Tags": sg_description.get("Tags", []),
6869
}
6970

7071
for i, egress in enumerate(sg_description.get("IpPermissionsEgress", [])):

0 commit comments

Comments
 (0)