Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ require (
github.com/hashicorp/terraform-json v0.24.0
github.com/hexops/gotextdiff v1.0.3
github.com/magodo/armid v0.0.0-20240524082432-7ce06ae46c33
github.com/magodo/azlist v0.0.0-20250807062828-b842fde1b538
github.com/magodo/azlist v0.0.0-20250827005956-f76aa26d5fe5
github.com/magodo/aztft v0.3.1-0.20250821020218-0a2b243abb92
github.com/magodo/slog2hclog v0.0.0-20240614031327-090ebd72a033
github.com/magodo/spinner v0.0.0-20240524082745-3a2305db1bdc
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69
github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
github.com/magodo/armid v0.0.0-20240524082432-7ce06ae46c33 h1:KmQ16pNsI7DaELU+CbqZKXVdvkE/YXqMH6LLkp6rw/Y=
github.com/magodo/armid v0.0.0-20240524082432-7ce06ae46c33/go.mod h1:rR8E7zfGMbmfnSQvrkFiWYdhrfTqsVSltelnZB09BwA=
github.com/magodo/azlist v0.0.0-20250807062828-b842fde1b538 h1:+OY84fSoUN5cdamJQ2TOWjCYCK6d9AktZefEz57ZxXQ=
github.com/magodo/azlist v0.0.0-20250807062828-b842fde1b538/go.mod h1:uRr4kq5cpk4NIUuT1q6ZYYfYSIHO5Z7XlHeN9c2mlKs=
github.com/magodo/azlist v0.0.0-20250827005956-f76aa26d5fe5 h1:nqT0Mj2H9GokP+6dJCwewlK5NqN/vN+egX4/JiXEMMg=
github.com/magodo/azlist v0.0.0-20250827005956-f76aa26d5fe5/go.mod h1:uRr4kq5cpk4NIUuT1q6ZYYfYSIHO5Z7XlHeN9c2mlKs=
github.com/magodo/aztft v0.3.1-0.20250821020218-0a2b243abb92 h1:q0Q/TtZDVw8eZaMAhRdBdckmiGP+AxiE1CPAle3bXuE=
github.com/magodo/aztft v0.3.1-0.20250821020218-0a2b243abb92/go.mod h1:t83k9NbdobHHhjtz6MFetOSRqiKfaNfbBpowxZyzYtw=
github.com/magodo/slog2hclog v0.0.0-20240614031327-090ebd72a033 h1:K2seYsMAzoICCLdDe7uU2WyaACLW+tvdTWG3QB+pyec=
Expand Down
4 changes: 2 additions & 2 deletions internal/meta/meta_res.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (meta *MetaResource) ListResource(ctx context.Context) (ImportList, error)

rl, err := meta.listByIds(ctx, rl)
if err != nil {
return nil, fmt.Errorf("querying extension resources: %v", err)
return nil, fmt.Errorf("listing resources: %v", err)
}

meta.Logger().Debug("Azure Resource set map to TF resource set")
Expand Down Expand Up @@ -203,7 +203,7 @@ func (meta MetaResource) listByIds(ctx context.Context, resources []resourceset.

result, err := lister.ListByIds(ctx, ids)
if err != nil {
return nil, fmt.Errorf("listing extension resources: %w", err)
return nil, fmt.Errorf("azlist listing resources by ids: %w", err)
}

var rl []resourceset.AzureResource
Expand Down
Loading