50 lines
1.3 KiB
Go
50 lines
1.3 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"
|
|
|
|
"github.com/aws/aws-sdk-go/aws"
|
|
)
|
|
|
|
type VPCSecurityGroupEnumerator struct {
|
|
repository repository.EC2Repository
|
|
factory resource.ResourceFactory
|
|
}
|
|
|
|
func NewVPCSecurityGroupEnumerator(repo repository.EC2Repository, factory resource.ResourceFactory) *VPCSecurityGroupEnumerator {
|
|
return &VPCSecurityGroupEnumerator{
|
|
repo,
|
|
factory,
|
|
}
|
|
}
|
|
|
|
func (e *VPCSecurityGroupEnumerator) SupportedType() resource.ResourceType {
|
|
return resourceaws.AwsSecurityGroupResourceType
|
|
}
|
|
|
|
func (e *VPCSecurityGroupEnumerator) Enumerate() ([]resource.Resource, error) {
|
|
securityGroups, _, err := e.repository.ListAllSecurityGroups()
|
|
if err != nil {
|
|
return nil, remoteerror.NewResourceEnumerationError(err, string(e.SupportedType()))
|
|
}
|
|
|
|
results := make([]resource.Resource, 0, len(securityGroups))
|
|
|
|
for _, item := range securityGroups {
|
|
results = append(
|
|
results,
|
|
e.factory.CreateAbstractResource(
|
|
string(e.SupportedType()),
|
|
aws.StringValue(item.GroupId),
|
|
map[string]interface{}{},
|
|
),
|
|
)
|
|
}
|
|
|
|
return results, nil
|
|
}
|