driftctl/enumeration/remote/aws/ec2_eip_enumerator.go

52 lines
1.3 KiB
Go
Raw Normal View History

2021-07-01 10:19:34 +00:00
package aws
import (
2022-05-12 08:33:29 +00:00
"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"
2021-07-01 10:19:34 +00:00
)
type EC2EipEnumerator struct {
2021-07-05 08:30:42 +00:00
repository repository.EC2Repository
factory resource.ResourceFactory
2021-07-01 10:19:34 +00:00
}
2021-07-05 08:30:42 +00:00
func NewEC2EipEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *EC2EipEnumerator {
2021-07-01 10:19:34 +00:00
return &EC2EipEnumerator{
2021-07-05 08:30:42 +00:00
repository: repo,
factory: factory,
2021-07-01 10:19:34 +00:00
}
}
func (e *EC2EipEnumerator) SupportedType() resource.ResourceType {
return aws.AwsEipResourceType
}
2021-08-09 14:03:04 +00:00
func (e *EC2EipEnumerator) Enumerate() ([]*resource.Resource, error) {
2021-07-01 10:19:34 +00:00
addresses, err := e.repository.ListAllAddresses()
if err != nil {
2021-08-03 10:34:36 +00:00
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
2021-07-01 10:19:34 +00:00
}
2021-10-27 09:30:47 +00:00
results := make([]*resource.Resource, 0, len(addresses))
2021-07-01 10:19:34 +00:00
for _, address := range addresses {
2022-05-12 08:33:29 +00:00
if address.AllocationId == nil {
logrus.Warn("Elastic IP does not have an allocation ID, ignoring")
continue
}
2021-07-01 10:19:34 +00:00
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
*address.AllocationId,
map[string]interface{}{},
),
)
}
return results, err
}