driftctl/pkg/remote/aws/kms_alias_enumerator.go

47 lines
1.1 KiB
Go
Raw Normal View History

2021-07-01 15:03:40 +00:00
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 KMSAliasEnumerator struct {
repository repository.KMSRepository
factory resource.ResourceFactory
}
func NewKMSAliasEnumerator(repo repository.KMSRepository, factory resource.ResourceFactory) *KMSAliasEnumerator {
return &KMSAliasEnumerator{
repository: repo,
factory: factory,
}
}
func (e *KMSAliasEnumerator) SupportedType() resource.ResourceType {
return aws.AwsKmsAliasResourceType
}
2021-08-09 14:03:04 +00:00
func (e *KMSAliasEnumerator) Enumerate() ([]*resource.Resource, error) {
2021-07-01 15:03:40 +00:00
aliases, err := e.repository.ListAllAliases()
if err != nil {
2021-08-03 10:34:36 +00:00
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
2021-07-01 15:03:40 +00:00
}
2021-08-09 14:03:04 +00:00
results := make([]*resource.Resource, len(aliases))
2021-07-01 15:03:40 +00:00
for _, alias := range aliases {
results = append(
results,
e.factory.CreateAbstractResource(
string(e.SupportedType()),
*alias.AliasName,
map[string]interface{}{},
),
)
}
return results, err
}