2021-06-11 15:10:06 +00:00
|
|
|
package aws
|
|
|
|
|
|
|
|
import (
|
2021-08-03 10:34:36 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/alerter"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/alerts"
|
2021-06-11 15:10:06 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/aws/repository"
|
2021-08-03 10:34:36 +00:00
|
|
|
"github.com/cloudskiff/driftctl/pkg/remote/common"
|
2021-06-11 15:10:06 +00:00
|
|
|
remoteerror "github.com/cloudskiff/driftctl/pkg/remote/error"
|
|
|
|
tf "github.com/cloudskiff/driftctl/pkg/remote/terraform"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource"
|
|
|
|
"github.com/cloudskiff/driftctl/pkg/resource/aws"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
type S3BucketEnumerator struct {
|
|
|
|
repository repository.S3Repository
|
|
|
|
factory resource.ResourceFactory
|
|
|
|
providerConfig tf.TerraformProviderConfig
|
2021-08-03 10:34:36 +00:00
|
|
|
alerter alerter.AlerterInterface
|
2021-06-11 15:10:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-03 10:34:36 +00:00
|
|
|
func NewS3BucketEnumerator(repo repository.S3Repository, factory resource.ResourceFactory, providerConfig tf.TerraformProviderConfig, alerter alerter.AlerterInterface) *S3BucketEnumerator {
|
2021-06-11 15:10:06 +00:00
|
|
|
return &S3BucketEnumerator{
|
|
|
|
repository: repo,
|
|
|
|
factory: factory,
|
|
|
|
providerConfig: providerConfig,
|
2021-08-03 10:34:36 +00:00
|
|
|
alerter: alerter,
|
2021-06-11 15:10:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (e *S3BucketEnumerator) SupportedType() resource.ResourceType {
|
|
|
|
return aws.AwsS3BucketResourceType
|
|
|
|
}
|
|
|
|
|
2021-08-09 14:03:04 +00:00
|
|
|
func (e *S3BucketEnumerator) Enumerate() ([]*resource.Resource, error) {
|
2021-06-11 15:10:06 +00:00
|
|
|
buckets, err := e.repository.ListAllBuckets()
|
|
|
|
if err != nil {
|
2021-08-03 10:34:36 +00:00
|
|
|
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
|
2021-06-11 15:10:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-09 14:03:04 +00:00
|
|
|
results := make([]*resource.Resource, len(buckets))
|
2021-06-11 15:10:06 +00:00
|
|
|
|
|
|
|
for _, bucket := range buckets {
|
|
|
|
region, err := e.repository.GetBucketLocation(*bucket.Name)
|
|
|
|
if err != nil {
|
2021-08-03 10:34:36 +00:00
|
|
|
alerts.SendEnumerationAlert(common.RemoteAWSTerraform, e.alerter, remoteerror.NewResourceScanningError(err, string(e.SupportedType()), *bucket.Name))
|
|
|
|
continue
|
2021-06-11 15:10:06 +00:00
|
|
|
}
|
|
|
|
if region == "" || region != e.providerConfig.DefaultAlias {
|
|
|
|
logrus.WithFields(logrus.Fields{
|
|
|
|
"region": region,
|
|
|
|
"bucket": *bucket.Name,
|
|
|
|
}).Debug("Skipped bucket")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
results = append(
|
|
|
|
results,
|
|
|
|
e.factory.CreateAbstractResource(
|
|
|
|
string(e.SupportedType()),
|
|
|
|
*bucket.Name,
|
|
|
|
map[string]interface{}{
|
|
|
|
"region": region,
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, err
|
|
|
|
}
|