Skip to content

Commit

Permalink
Use forked version of proxmox-api-go to support HA Group
Browse files Browse the repository at this point in the history
  • Loading branch information
RubenHoms committed Oct 22, 2021
1 parent ab3a8a4 commit 4e78625
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Telmate/terraform-provider-proxmox
module github.com/wearespindle/terraform-provider-proxmox

go 1.16

Expand All @@ -19,7 +19,7 @@ require (
github.com/mitchellh/mapstructure v1.4.2 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/rs/zerolog v1.25.0
github.com/wearespindle/proxmox-api-go v0.0.0-20211019080243-dfeae1ab060f
github.com/wearespindle/proxmox-api-go v0.0.0-20211022120806-a5044810e206
github.com/zclconf/go-cty v1.9.1 // indirect
golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f // indirect
golang.org/x/sys v0.0.0-20211015200801-69063c4bb744 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ github.com/vmihailenco/msgpack v4.0.4+incompatible h1:dSLoQfGFAo3F6OoNhwUmLwVgaU
github.com/vmihailenco/msgpack v4.0.4+incompatible/go.mod h1:fy3FlTQTDXWkZ7Bh6AcGMlsjHatGryHQYUTf1ShIgkk=
github.com/vmihailenco/msgpack/v4 v4.3.12/go.mod h1:gborTTJjAo/GWTqqRjrLCn9pgNN+NXzzngzBKDPIqw4=
github.com/vmihailenco/tagparser v0.1.1/go.mod h1:OeAg3pn3UbLjkWt+rN9oFYB6u/cQgqMEUPoW2WPyhdI=
github.com/wearespindle/proxmox-api-go v0.0.0-20211019080243-dfeae1ab060f h1:HFnAuLKxrbkPrJ8EfrmgR7jz01QQPM9x3UmEqOCSSB4=
github.com/wearespindle/proxmox-api-go v0.0.0-20211019080243-dfeae1ab060f/go.mod h1:SbAfPAznmGqitIxfbOwrg9Rgu9hb/SrCbLsX46xjOgU=
github.com/wearespindle/proxmox-api-go v0.0.0-20211022120806-a5044810e206 h1:jbz8Ep5IID1mhkCUvYHGlZXIycJ8DmhjR7exA40oAbY=
github.com/wearespindle/proxmox-api-go v0.0.0-20211022120806-a5044810e206/go.mod h1:SbAfPAznmGqitIxfbOwrg9Rgu9hb/SrCbLsX46xjOgU=
github.com/xanzy/ssh-agent v0.3.0 h1:wUMzuKtKilRgBAD1sUb8gOwwRr2FGoBVumcjoOACClI=
github.com/xanzy/ssh-agent v0.3.0/go.mod h1:3s9xbODqPuuhK9JV1R321M/FlMZSBvE5aY6eAcqrDh0=
github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package main
import (
"context"
"flag"
"github.com/Telmate/terraform-provider-proxmox/proxmox"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/wearespindle/terraform-provider-proxmox/proxmox"
"log"
)

Expand All @@ -23,7 +23,7 @@ func main() {
}

if debugMode {
err := plugin.Debug(context.Background(), "registry.terraform.io/telmate/proxmox", opts)
err := plugin.Debug(context.Background(), "registry.terraform.io/wearespindle/proxmox", opts)
if err != nil {
log.Fatal(err.Error())
}
Expand Down

0 comments on commit 4e78625

Please sign in to comment.