49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
package azurerm
|
|
|
|
import (
|
|
"github.com/snyk/driftctl/pkg/remote/azurerm/repository"
|
|
remoteerror "github.com/snyk/driftctl/pkg/remote/error"
|
|
"github.com/snyk/driftctl/pkg/resource"
|
|
"github.com/snyk/driftctl/pkg/resource/azurerm"
|
|
)
|
|
|
|
type AzurermVirtualNetworkEnumerator struct {
|
|
repository repository.NetworkRepository
|
|
factory resource.ResourceFactory
|
|
}
|
|
|
|
func NewAzurermVirtualNetworkEnumerator(repo repository.NetworkRepository, factory resource.ResourceFactory) *AzurermVirtualNetworkEnumerator {
|
|
return &AzurermVirtualNetworkEnumerator{
|
|
repository: repo,
|
|
factory: factory,
|
|
}
|
|
}
|
|
|
|
func (e *AzurermVirtualNetworkEnumerator) SupportedType() resource.ResourceType {
|
|
return azurerm.AzureVirtualNetworkResourceType
|
|
}
|
|
|
|
func (e *AzurermVirtualNetworkEnumerator) Enumerate() ([]*resource.Resource, error) {
|
|
resources, err := e.repository.ListAllVirtualNetworks()
|
|
if err != nil {
|
|
return nil, remoteerror.NewResourceListingError(err, string(e.SupportedType()))
|
|
}
|
|
|
|
results := make([]*resource.Resource, 0, len(resources))
|
|
|
|
for _, res := range resources {
|
|
results = append(
|
|
results,
|
|
e.factory.CreateAbstractResource(
|
|
string(e.SupportedType()),
|
|
*res.ID,
|
|
map[string]interface{}{
|
|
"name": *res.Name,
|
|
},
|
|
),
|
|
)
|
|
}
|
|
|
|
return results, err
|
|
}
|