driftctl/enumeration/remote/aws/ec2_internet_gateway_enumer...

51 lines
1.4 KiB
Go
Raw Normal View History

2021-07-01 14:01:46 +00:00
package aws
import (
"github.com/snyk/driftctl/enumeration/remote/aws/repository"
remoteerror "github.com/snyk/driftctl/enumeration/remote/error"
"github.com/snyk/driftctl/enumeration/resource"
"github.com/snyk/driftctl/enumeration/resource/aws"
2021-07-01 14:01:46 +00:00
)
type EC2InternetGatewayEnumerator struct {
repository repository.EC2Repository
factory resource.ResourceFactory
}
func NewEC2InternetGatewayEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *EC2InternetGatewayEnumerator {
return &EC2InternetGatewayEnumerator{
repository: repo,
factory: factory,
}
}
func (e *EC2InternetGatewayEnumerator) SupportedType() resource.ResourceType {
return aws.AwsInternetGatewayResourceType
}
2021-08-09 14:03:04 +00:00
func (e *EC2InternetGatewayEnumerator) Enumerate() ([]*resource.Resource, error) {
2021-07-01 14:01:46 +00:00
internetGateways, err := e.repository.ListAllInternetGateways()
if err != nil {
2021-08-03 10:34:36 +00:00
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
2021-07-01 14:01:46 +00:00
}
2021-10-27 09:30:47 +00:00
results := make([]*resource.Resource, 0, len(internetGateways))
2021-07-01 14:01:46 +00:00
for _, internetGateway := range internetGateways {
data := map[string]interface{}{}
if len(internetGateway.Attachments) > 0 && internetGateway.Attachments[0].VpcId != nil {
2021-07-22 11:09:56 +00:00
data["vpc_id"] = *internetGateway.Attachments[0].VpcId
}
2021-07-01 14:01:46 +00:00
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
*internetGateway.InternetGatewayId,
data,
2021-07-01 14:01:46 +00:00
),
)
}
return results, err
}