47 lines
1.1 KiB
Go
47 lines
1.1 KiB
Go
|
package aws
|
||
|
|
||
|
import (
|
||
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
||
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
||
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
||
|
"github.com/cloudskiff/driftctl/pkg/resource/aws"
|
||
|
)
|
||
|
|
||
|
type EC2SubnetEnumerator struct {
|
||
|
repository repository.EC2Repository
|
||
|
factory resource.ResourceFactory
|
||
|
}
|
||
|
|
||
|
func NewEC2SubnetEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *EC2SubnetEnumerator {
|
||
|
return &EC2SubnetEnumerator{
|
||
|
repository: repo,
|
||
|
factory: factory,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (e *EC2SubnetEnumerator) SupportedType() resource.ResourceType {
|
||
|
return aws.AwsSubnetResourceType
|
||
|
}
|
||
|
|
||
|
func (e *EC2SubnetEnumerator) Enumerate() ([]resource.Resource, error) {
|
||
|
subnets, _, err := e.repository.ListAllSubnets()
|
||
|
if err != nil {
|
||
|
return nil, remoteerror.NewResourceEnumerationError(err, string(e.SupportedType()))
|
||
|
}
|
||
|
|
||
|
results := make([]resource.Resource, len(subnets))
|
||
|
|
||
|
for _, subnet := range subnets {
|
||
|
results = append(
|
||
|
results,
|
||
|
e.factory.CreateAbstractResource(
|
||
|
string(e.SupportedType()),
|
||
|
*subnet.SubnetId,
|
||
|
map[string]interface{}{},
|
||
|
),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
return results, err
|
||
|
}
|