driftctl/enumeration/remote/aws/ec2_eip_enumerator.go

52 lines
1.3 KiB
Go

package aws
import (
"github.com/sirupsen/logrus"
"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"
)
type EC2EipEnumerator struct {
repository repository.EC2Repository
factory resource.ResourceFactory
}
func NewEC2EipEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *EC2EipEnumerator {
return &EC2EipEnumerator{
repository: repo,
factory: factory,
}
}
func (e *EC2EipEnumerator) SupportedType() resource.ResourceType {
return aws.AwsEipResourceType
}
func (e *EC2EipEnumerator) Enumerate() ([]*resource.Resource, error) {
addresses, err := e.repository.ListAllAddresses()
if err != nil {
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
}
results := make([]*resource.Resource, 0, len(addresses))
for _, address := range addresses {
if address.AllocationId == nil {
logrus.Warn("Elastic IP does not have an allocation ID, ignoring")
continue
}
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
*address.AllocationId,
map[string]interface{}{},
),
)
}
return results, err
}