Skip to content

Commit 1cdccb0

Browse files
committed
Move to @snyk
1 parent 94d7c39 commit 1cdccb0

File tree

613 files changed

+1999
-1999
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

613 files changed

+1999
-1999
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: '📝 Documentation'
4-
url: https://github.com/cloudskiff/driftctl-docs/issues/new
4+
url: https://github.com/snyk/driftctl-docs/issues/new
55
about: Please open documentation issue on driftctl docs repository
66
- name: '👾 Support chat'
77
url: https://discord.gg/NMCBxtD7Nd

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ builds:
2828
- arm
2929
- arm64
3030
- 386
31-
ldflags: "-s -w -X github.com/cloudskiff/driftctl/build.env={{ .Env.ENV }} -X github.com/cloudskiff/driftctl/pkg/version.version={{ .Tag }}"
31+
ldflags: "-s -w -X github.com/snyk/driftctl/build.env={{ .Env.ENV }} -X github.com/snyk/driftctl/pkg/version.version={{ .Tag }}"
3232
archives:
3333
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
3434
format: binary

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cloudskiff/driftctl
1+
module github.com/snyk/driftctl
22

33
go 1.16
44

logger/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package logger
22

33
import (
4-
"github.com/cloudskiff/driftctl/build"
54
"github.com/sirupsen/logrus"
5+
"github.com/snyk/driftctl/build"
66
"github.com/spf13/viper"
77
)
88

main.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ import (
55
"os"
66
"time"
77

8-
"github.com/cloudskiff/driftctl/build"
9-
"github.com/cloudskiff/driftctl/logger"
10-
"github.com/cloudskiff/driftctl/pkg/cmd"
11-
cmderrors "github.com/cloudskiff/driftctl/pkg/cmd/errors"
12-
"github.com/cloudskiff/driftctl/pkg/config"
13-
"github.com/cloudskiff/driftctl/pkg/version"
14-
"github.com/cloudskiff/driftctl/sentry"
158
"github.com/fatih/color"
169
gosentry "github.com/getsentry/sentry-go"
1710
"github.com/joho/godotenv"
1811
"github.com/sirupsen/logrus"
12+
"github.com/snyk/driftctl/build"
13+
"github.com/snyk/driftctl/logger"
14+
"github.com/snyk/driftctl/pkg/cmd"
15+
cmderrors "github.com/snyk/driftctl/pkg/cmd/errors"
16+
"github.com/snyk/driftctl/pkg/config"
17+
"github.com/snyk/driftctl/pkg/version"
18+
"github.com/snyk/driftctl/sentry"
1919
)
2020

2121
func init() {

mocks/AlerterInterface.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/alerter/alerter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package alerter
33
import (
44
"fmt"
55

6-
"github.com/cloudskiff/driftctl/pkg/resource"
6+
"github.com/snyk/driftctl/pkg/resource"
77
)
88

99
type AlerterInterface interface {

pkg/alerter/alerter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"reflect"
55
"testing"
66

7-
"github.com/cloudskiff/driftctl/pkg/resource"
7+
"github.com/snyk/driftctl/pkg/resource"
88
)
99

1010
func TestAlerter_Alert(t *testing.T) {

pkg/analyser/analysis.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/r3labs/diff/v2"
1111

12-
"github.com/cloudskiff/driftctl/pkg/alerter"
13-
"github.com/cloudskiff/driftctl/pkg/resource"
12+
"github.com/snyk/driftctl/pkg/alerter"
13+
"github.com/snyk/driftctl/pkg/resource"
1414
)
1515

1616
type Change struct {

pkg/analyser/analyzer.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package analyser
22

33
import (
4-
"github.com/cloudskiff/driftctl/pkg/filter"
5-
resourceaws "github.com/cloudskiff/driftctl/pkg/resource/aws"
64
"github.com/r3labs/diff/v2"
5+
"github.com/snyk/driftctl/pkg/filter"
6+
resourceaws "github.com/snyk/driftctl/pkg/resource/aws"
77

8-
"github.com/cloudskiff/driftctl/pkg/alerter"
9-
"github.com/cloudskiff/driftctl/pkg/resource"
8+
"github.com/snyk/driftctl/pkg/alerter"
9+
"github.com/snyk/driftctl/pkg/resource"
1010
)
1111

1212
type UnmanagedSecurityGroupRulesAlert struct{}

0 commit comments

Comments
 (0)