Skip to content

Commit ae7858c

Browse files
chore(deps): update terraform sdk version
1 parent e4c9861 commit ae7858c

File tree

98 files changed

+847
-253
lines changed

Some content is hidden

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

98 files changed

+847
-253
lines changed

cloudstack/data_source_cloudstack_common_schema.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package cloudstack
2121

2222
import (
23-
"github.com/hashicorp/terraform/helper/schema"
23+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
2424
)
2525

2626
func dataSourceFiltersSchema() *schema.Schema {

cloudstack/data_source_cloudstack_instance.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"time"
2929

3030
"github.com/apache/cloudstack-go/v2/cloudstack"
31-
"github.com/hashicorp/terraform/helper/schema"
31+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3232
)
3333

3434
func dataSourceCloudstackInstance() *schema.Resource {

cloudstack/data_source_cloudstack_instance_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cloudstack
2222
import (
2323
"testing"
2424

25-
"github.com/hashicorp/terraform/helper/resource"
25+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
2626
)
2727

2828
// basic acceptance to check if the display_name attribute has same value in

cloudstack/data_source_cloudstack_ipaddress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"time"
2929

3030
"github.com/apache/cloudstack-go/v2/cloudstack"
31-
"github.com/hashicorp/terraform/helper/schema"
31+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3232
)
3333

3434
func dataSourceCloudstackIPAddress() *schema.Resource {

cloudstack/data_source_cloudstack_ipaddress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cloudstack
2222
import (
2323
"testing"
2424

25-
"github.com/hashicorp/terraform/helper/resource"
25+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
2626
)
2727

2828
func TestAccIPAddressDataSource_basic(t *testing.T) {

cloudstack/data_source_cloudstack_network_offering.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"time"
2929

3030
"github.com/apache/cloudstack-go/v2/cloudstack"
31-
"github.com/hashicorp/terraform/helper/schema"
31+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3232
)
3333

3434
func dataSourceCloudstackNetworkOffering() *schema.Resource {

cloudstack/data_source_cloudstack_network_offering_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cloudstack
2222
import (
2323
"testing"
2424

25-
"github.com/hashicorp/terraform/helper/resource"
25+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
2626
)
2727

2828
func TestAccNetworkOfferingDataSource_basic(t *testing.T) {

cloudstack/data_source_cloudstack_pod.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"strings"
2828

2929
"github.com/apache/cloudstack-go/v2/cloudstack"
30-
"github.com/hashicorp/terraform/helper/schema"
30+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3131
)
3232

3333
func dataSourceCloudstackPod() *schema.Resource {

cloudstack/data_source_cloudstack_pod_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package cloudstack
2222
import (
2323
"testing"
2424

25-
"github.com/hashicorp/terraform/helper/resource"
25+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
2626
)
2727

2828
func TestAccPodDataSource_basic(t *testing.T) {

cloudstack/data_source_cloudstack_service_offering.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
"time"
2929

3030
"github.com/apache/cloudstack-go/v2/cloudstack"
31-
"github.com/hashicorp/terraform/helper/schema"
31+
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
3232
)
3333

3434
func dataSourceCloudstackServiceOffering() *schema.Resource {

0 commit comments

Comments
 (0)