-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed
Closed
Copy link
Labels
aws:ec2Amazon Elastic Compute CloudAmazon Elastic Compute Cloudgood first issueGood item to work on for newcomersGood item to work on for newcomersstatus: resolved/fixedResolved with a fix or an implementationResolved with a fix or an implementationtype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature
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
Metadata
Metadata
Assignees
Labels
aws:ec2Amazon Elastic Compute CloudAmazon Elastic Compute Cloudgood first issueGood item to work on for newcomersGood item to work on for newcomersstatus: resolved/fixedResolved with a fix or an implementationResolved with a fix or an implementationtype: featureNew feature, or improvement to an existing featureNew feature, or improvement to an existing feature