Skip to content

Commit c4f4b12

Browse files
jotruonrashik-bhasin
authored andcommitted
Exempted - Fix github import
1 parent 08af69f commit c4f4b12

File tree

2,467 files changed

+7210
-7207
lines changed

Some content is hidden

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

2,467 files changed

+7210
-7207
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module terraform-provider-oci
1+
module github.com/oracle/terraform-provider-oci
22

33
require (
44
github.com/fatih/color v1.7.0

internal/acctest/acctest.go

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

66
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
77

8-
"terraform-provider-oci/internal/globalvar"
9-
"terraform-provider-oci/internal/utils"
8+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
9+
"github.com/oracle/terraform-provider-oci/internal/utils"
1010

1111
"os"
1212
"path"

internal/acctest/oci_sweeper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1717

18-
utils "terraform-provider-oci/internal/utils"
18+
utils "github.com/oracle/terraform-provider-oci/internal/utils"
1919
)
2020

2121
/* This map holds the list of ocids for a given resourceType by compartment

internal/acctest/oci_sweeper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
1515
oci_identity "github.com/oracle/oci-go-sdk/v65/identity"
1616

17-
"terraform-provider-oci/internal/client"
17+
"github.com/oracle/terraform-provider-oci/internal/client"
1818
)
1919

2020
func setUp(t *testing.T) {

internal/acctest/provider_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ import (
1616

1717
oci_identity "github.com/oracle/oci-go-sdk/v65/identity"
1818

19-
"terraform-provider-oci/internal/globalvar"
19+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
2020

21-
"terraform-provider-oci/httpreplay"
21+
"github.com/oracle/terraform-provider-oci/httpreplay"
2222

2323
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
2424
"github.com/stretchr/testify/assert"
2525

2626
oci_common "github.com/oracle/oci-go-sdk/v65/common"
2727

28-
tf_client "terraform-provider-oci/internal/client"
29-
"terraform-provider-oci/internal/provider"
30-
"terraform-provider-oci/internal/utils"
28+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
29+
"github.com/oracle/terraform-provider-oci/internal/provider"
30+
"github.com/oracle/terraform-provider-oci/internal/utils"
3131
)
3232

3333
// This test runs the Provider sanity checks.

internal/acctest/test_helpers.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ import (
2020

2121
"github.com/stretchr/testify/assert"
2222

23-
"terraform-provider-oci/internal/globalvar"
23+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
2424

2525
"github.com/hashicorp/go-multierror"
2626

27-
"terraform-provider-oci/httpreplay"
27+
"github.com/oracle/terraform-provider-oci/httpreplay"
2828

2929
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
3030
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3131
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
3232
oci_common "github.com/oracle/oci-go-sdk/v65/common"
3333

34-
tf_client "terraform-provider-oci/internal/client"
35-
tf_provider "terraform-provider-oci/internal/provider"
34+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
35+
tf_provider "github.com/oracle/terraform-provider-oci/internal/provider"
3636

37-
//tf_resource_discovery "terraform-provider-oci/oci/resourcediscovery"
38-
tf_resource "terraform-provider-oci/internal/tfresource"
39-
"terraform-provider-oci/internal/utils"
37+
//tf_resource_discovery "github.com/oracle/terraform-provider-oci/oci/resourcediscovery"
38+
tf_resource "github.com/oracle/terraform-provider-oci/internal/tfresource"
39+
"github.com/oracle/terraform-provider-oci/internal/utils"
4040
)
4141

4242
var (

internal/acctest/test_helpers_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import (
66
"reflect"
77
"testing"
88

9-
tf_client "terraform-provider-oci/internal/client"
9+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
1010

1111
"github.com/stretchr/testify/assert"
1212

13-
"terraform-provider-oci/internal/globalvar"
14-
"terraform-provider-oci/internal/provider"
13+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
14+
"github.com/oracle/terraform-provider-oci/internal/provider"
1515

16-
"terraform-provider-oci/internal/utils"
16+
"github.com/oracle/terraform-provider-oci/internal/utils"
1717

1818
"github.com/hashicorp/go-cty/cty"
1919
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"

internal/client/provider_clients.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111

1212
oci_kms "github.com/oracle/oci-go-sdk/v65/keymanagement"
1313

14-
"terraform-provider-oci/internal/globalvar"
14+
"github.com/oracle/terraform-provider-oci/internal/globalvar"
1515

1616
oci_common "github.com/oracle/oci-go-sdk/v65/common"
1717
oci_work_requests "github.com/oracle/oci-go-sdk/v65/workrequests"
1818

19-
utils "terraform-provider-oci/internal/utils"
19+
utils "github.com/oracle/terraform-provider-oci/internal/utils"
2020
)
2121

2222
var OracleClientRegistrationsVar *OracleClientRegistrations // This is a global registration for all oracle clients. This is invariant information about all clients regardless of region

internal/integrationtest/adm_knowledge_base_test.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ import (
1616
oci_adm "github.com/oracle/oci-go-sdk/v65/adm"
1717
"github.com/oracle/oci-go-sdk/v65/common"
1818

19-
"terraform-provider-oci/httpreplay"
20-
"terraform-provider-oci/internal/acctest"
21-
tf_client "terraform-provider-oci/internal/client"
22-
"terraform-provider-oci/internal/resourcediscovery"
23-
"terraform-provider-oci/internal/tfresource"
24-
"terraform-provider-oci/internal/utils"
19+
"github.com/oracle/terraform-provider-oci/httpreplay"
20+
"github.com/oracle/terraform-provider-oci/internal/acctest"
21+
tf_client "github.com/oracle/terraform-provider-oci/internal/client"
22+
"github.com/oracle/terraform-provider-oci/internal/resourcediscovery"
23+
"github.com/oracle/terraform-provider-oci/internal/tfresource"
24+
"github.com/oracle/terraform-provider-oci/internal/utils"
2525
)
2626

2727
var (

internal/integrationtest/adm_vulnerability_audit_application_dependency_vulnerability_test.go

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

1010
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1111

12-
"terraform-provider-oci/httpreplay"
13-
"terraform-provider-oci/internal/acctest"
12+
"github.com/oracle/terraform-provider-oci/httpreplay"
13+
"github.com/oracle/terraform-provider-oci/internal/acctest"
1414

15-
"terraform-provider-oci/internal/utils"
15+
"github.com/oracle/terraform-provider-oci/internal/utils"
1616
)
1717

1818
var (

0 commit comments

Comments
 (0)