Skip to content

Commit 7355f13

Browse files
cloudstack: fix build to use github.com/apache/cloudstack-go SDK
Signed-off-by: Rohit Yadav <[email protected]>
1 parent 7dd9382 commit 7355f13

File tree

57 files changed

+82
-66
lines changed

Some content is hidden

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

57 files changed

+82
-66
lines changed

cloudstack/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
package cloudstack
2121

22-
import "github.com/xanzy/go-cloudstack/v2/cloudstack"
22+
import "github.com/apache/cloudstack-go/v2/cloudstack"
2323

2424
// Config is the configuration structure used to instantiate a
2525
// new CloudStack client.

cloudstack/data_source_cloudstack_template.go

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

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

3333
func dataSourceCloudstackTemplate() *schema.Resource {

cloudstack/metadata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"log"
2424

2525
"github.com/hashicorp/terraform/helper/schema"
26-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
26+
"github.com/apache/cloudstack-go/v2/cloudstack"
2727
)
2828

2929
// metadataSchema returns the schema to use for metadata

cloudstack/resource_cloudstack_affinity_group.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"strings"
2626

2727
"github.com/hashicorp/terraform/helper/schema"
28-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
28+
"github.com/apache/cloudstack-go/v2/cloudstack"
2929
)
3030

3131
func resourceCloudStackAffinityGroup() *schema.Resource {

cloudstack/resource_cloudstack_affinity_group_test.go

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

2626
"github.com/hashicorp/terraform/helper/resource"
2727
"github.com/hashicorp/terraform/terraform"
28-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
28+
"github.com/apache/cloudstack-go/v2/cloudstack"
2929
)
3030

3131
func TestAccCloudStackAffinityGroup_basic(t *testing.T) {

cloudstack/resource_cloudstack_autoscale_vm_profile.go

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

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

3333
func resourceCloudStackAutoScaleVMProfile() *schema.Resource {

cloudstack/resource_cloudstack_autoscale_vm_profile_test.go

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

2626
"github.com/hashicorp/terraform/helper/resource"
2727
"github.com/hashicorp/terraform/terraform"
28-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
28+
"github.com/apache/cloudstack-go/v2/cloudstack"
2929
)
3030

3131
func TestAccCloudStackAutoscaleVMProfile_basic(t *testing.T) {

cloudstack/resource_cloudstack_disk.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525

2626
"github.com/hashicorp/terraform/helper/schema"
27-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
27+
"github.com/apache/cloudstack-go/v2/cloudstack"
2828
)
2929

3030
func resourceCloudStackDisk() *schema.Resource {

cloudstack/resource_cloudstack_disk_test.go

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

2626
"github.com/hashicorp/terraform/helper/resource"
2727
"github.com/hashicorp/terraform/terraform"
28-
"github.com/xanzy/go-cloudstack/v2/cloudstack"
28+
"github.com/apache/cloudstack-go/v2/cloudstack"
2929
)
3030

3131
func TestAccCloudStackDisk_basic(t *testing.T) {

cloudstack/resource_cloudstack_egress_firewall.go

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

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

3434
func resourceCloudStackEgressFirewall() *schema.Resource {

0 commit comments

Comments
 (0)