Closed
Description
Is there an existing issue for this?
- I have searched the existing issues
Feature description
LocalStack does not currently support the EC2 API's GetSecurityGroupsForVpc operation.
π§βπ» Implementation
This operation is effectively just syntatic sugar for a DescribeSecurityGroups operation filtering for vpc-id
.
i.e
response = aws_client.ec2.describe_security_groups(
Filters=[
{
'Name': 'vpc-id',
'Values': [
'vpc-abcd1234',
]
},
]
)
Anything else?
No response