driftctl/enumeration/remote/aws/ec2_eip_association_enumera...

49 lines
1.3 KiB
Go
Raw Normal View History

2021-07-01 11:34:14 +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 11:34:14 +00:00
)
type EC2EipAssociationEnumerator struct {
2021-07-05 08:30:42 +00:00
repository repository.EC2Repository
factory resource.ResourceFactory
2021-07-01 11:34:14 +00:00
}
2021-07-05 08:30:42 +00:00
func NewEC2EipAssociationEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *EC2EipAssociationEnumerator {
2021-07-01 11:34:14 +00:00
return &EC2EipAssociationEnumerator{
2021-07-05 08:30:42 +00:00
repository: repo,
factory: factory,
2021-07-01 11:34:14 +00:00
}
}
func (e *EC2EipAssociationEnumerator) SupportedType() resource.ResourceType {
return aws.AwsEipAssociationResourceType
}
2021-08-09 14:03:04 +00:00
func (e *EC2EipAssociationEnumerator) Enumerate() ([]*resource.Resource, error) {
addresses, err := e.repository.ListAllAddressesAssociation()
2021-07-01 11:34:14 +00:00
if err != nil {
2021-08-03 10:34:36 +00:00
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
2021-07-01 11:34:14 +00:00
}
2021-08-09 14:03:04 +00:00
results := make([]*resource.Resource, 0, len(addresses))
2021-07-01 11:34:14 +00:00
for _, address := range addresses {
2021-07-01 11:34:14 +00:00
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
*address.AssociationId,
map[string]interface{}{
"allocation_id": *address.AllocationId,
},
2021-07-01 11:34:14 +00:00
),
)
}
return results, err
}