Skip to content

Commit

Permalink
fix: revert property change from an earlier pull request (#97)
Browse files Browse the repository at this point in the history
* fix: revert property change from an earlier pull request

* chore: fix golangci-lint violation goimports
  • Loading branch information
ekristen authored Feb 23, 2024
1 parent 932ae96 commit e51aaca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions resources/apprunner-service.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ func (f *AppRunnerService) Remove(_ context.Context) error {

func (f *AppRunnerService) Properties() types.Properties {
properties := types.NewProperties()
properties.Set("ServiceARN", f.ServiceARN)
properties.Set("ServiceID", f.ServiceID)
properties.Set("ServiceArn", f.ServiceARN)
properties.Set("ServiceId", f.ServiceID)
properties.Set("ServiceName", f.ServiceName)
return properties
}
3 changes: 1 addition & 2 deletions resources/ecr-public-repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ package resources

import (
"context"
"github.com/aws/aws-sdk-go/aws/endpoints"

"time"

"github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/endpoints"
"github.com/aws/aws-sdk-go/service/ecrpublic"

"github.com/ekristen/libnuke/pkg/registry"
Expand Down

0 comments on commit e51aaca

Please sign in to comment.