53 lines
1.4 KiB
Go
53 lines
1.4 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"
|
||
|
resourceaws "github.com/cloudskiff/driftctl/pkg/resource/aws"
|
||
|
)
|
||
|
|
||
|
type IamAccessKeyEnumerator struct {
|
||
|
repository repository.IAMRepository
|
||
|
factory resource.ResourceFactory
|
||
|
}
|
||
|
|
||
|
func NewIamAccessKeyEnumerator(repository repository.IAMRepository, factory resource.ResourceFactory) *IamAccessKeyEnumerator {
|
||
|
return &IamAccessKeyEnumerator{
|
||
|
repository,
|
||
|
factory,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (e *IamAccessKeyEnumerator) SupportedType() resource.ResourceType {
|
||
|
return resourceaws.AwsIamAccessKeyResourceType
|
||
|
}
|
||
|
|
||
|
func (e *IamAccessKeyEnumerator) Enumerate() ([]resource.Resource, error) {
|
||
|
users, err := e.repository.ListAllUsers()
|
||
|
if err != nil {
|
||
|
return nil, remoteerror.NewResourceEnumerationErrorWithType(err, string(e.SupportedType()), resourceaws.AwsIamUserResourceType)
|
||
|
}
|
||
|
|
||
|
keys, err := e.repository.ListAllAccessKeys(users)
|
||
|
if err != nil {
|
||
|
return nil, remoteerror.NewResourceEnumerationError(err, resourceaws.AwsIamAccessKeyResourceType)
|
||
|
}
|
||
|
|
||
|
results := make([]resource.Resource, 0)
|
||
|
for _, key := range keys {
|
||
|
results = append(
|
||
|
results,
|
||
|
e.factory.CreateAbstractResource(
|
||
|
string(e.SupportedType()),
|
||
|
*key.AccessKeyId,
|
||
|
map[string]interface{}{
|
||
|
"user": *key.UserName,
|
||
|
},
|
||
|
),
|
||
|
)
|
||
|
}
|
||
|
|
||
|
return results, nil
|
||
|
}
|