Skip to content

Commit

Permalink
nit: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tombuildsstuff committed Feb 28, 2024
1 parent 73b5283 commit e2403b2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func dataSourceBlueprintDefinitionRead(d *pluginsdk.ResourceData, meta interface
d.Set("display_name", pointer.From(p.DisplayName))
d.Set("last_modified", p.Status.LastModified)
d.Set("time_created", p.Status.TimeCreated)
d.Set("target_scope", p.TargetScope)
d.Set("target_scope", pointer.From(p.TargetScope))

publishedId := publishedblueprint.NewScopedBlueprintID(id.ResourceScope, id.BlueprintName)

Expand Down
2 changes: 1 addition & 1 deletion internal/services/labservice/lab_service_lab_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ package labservice
import (
"context"
"fmt"
"github.com/hashicorp/go-azure-helpers/lang/pointer"
"time"

"github.com/hashicorp/go-azure-helpers/lang/pointer"
"github.com/hashicorp/go-azure-helpers/lang/response"
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonids"
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema"
Expand Down
2 changes: 1 addition & 1 deletion internal/services/network/route_filter_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ package network

import (
"fmt"
"github.com/hashicorp/go-azure-helpers/lang/pointer"
"log"
"time"

"github.com/hashicorp/go-azure-helpers/lang/pointer"
"github.com/hashicorp/go-azure-helpers/lang/response"
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema"
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ package notificationhub
import (
"context"
"fmt"
"github.com/hashicorp/go-azure-helpers/lang/pointer"
"log"
"strconv"
"time"

"github.com/hashicorp/go-azure-helpers/lang/pointer"
"github.com/hashicorp/go-azure-helpers/lang/response"
"github.com/hashicorp/go-azure-helpers/resourcemanager/commonschema"
"github.com/hashicorp/go-azure-helpers/resourcemanager/location"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ package sentinel

import (
"fmt"
"github.com/hashicorp/go-azure-helpers/lang/pointer"
"log"
"time"

"github.com/hashicorp/go-azure-helpers/lang/pointer"
"github.com/hashicorp/go-azure-helpers/lang/response"
"github.com/hashicorp/go-azure-sdk/resource-manager/operationalinsights/2020-08-01/workspaces"
"github.com/hashicorp/go-azure-sdk/resource-manager/securityinsights/2022-10-01-preview/alertrules"
Expand Down

0 comments on commit e2403b2

Please sign in to comment.