From 643f3e9722228fce581497ce793a1bfd1dd33956 Mon Sep 17 00:00:00 2001 From: Erik Kristensen Date: Wed, 5 Feb 2025 14:18:23 -0700 Subject: [PATCH] fix(ec2-internet-gateway-attachment): include account id properly --- resources/ec2-internet-gateway-attachment.go | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/ec2-internet-gateway-attachment.go b/resources/ec2-internet-gateway-attachment.go index 228ad657..ce8536dd 100644 --- a/resources/ec2-internet-gateway-attachment.go +++ b/resources/ec2-internet-gateway-attachment.go @@ -62,6 +62,7 @@ func (l *EC2InternetGatewayAttachmentLister) List(_ context.Context, o interface for _, igw := range resp.InternetGateways { resources = append(resources, &EC2InternetGatewayAttachment{ svc: svc, + accountID: opts.AccountID, vpcID: vpc.VpcId, vpcOwnerID: vpc.OwnerId, vpcTags: vpc.Tags,