mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-16 10:00:27 -04:00
* Remove `make updatedeps` from Travis build. We'll follow up with more specific plans around dependency updating in subsequent PRs. * Update all `make` targets to set `GO15VENDOREXPERIMENT=1` and to filter out `/vendor/` from `./...` where appropriate. * Temporarily remove `vet` from the `make test` target until we can figure out how to get it to not vet `vendor/`. (Initial experimentation failed to yield the proper incantation.) Everything is pinned to current master, with the exception of: * Azure/azure-sdk-for-go which is pinned before the breaking change today * aws/aws-sdk-go which is pinned to the most recent tag The documentation still needs to be updated, which we can do in a follow up PR. The goal here is to unblock release.
60 lines
1.4 KiB
Markdown
60 lines
1.4 KiB
Markdown
## vmware-govcd
|
|
|
|
This package was originally forked from [github.com/vmware/govcloudair](https://github.com/vmware/govcloudair) before pulling in [rickard-von-essen's](https://github.com/rickard-von-essen)
|
|
great changes to allow using a [vCloud Director API](https://github.com/rickard-von-essen/govcloudair/tree/vcd-5.5). On top of this I have added features as needed for a terraform provider for vCloud Director
|
|
|
|
### Example ###
|
|
|
|
```go
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"os"
|
|
|
|
"github.com/hmrc/vmware-govcd"
|
|
)
|
|
|
|
type Config struct {
|
|
User string
|
|
Password string
|
|
Org string
|
|
Href string
|
|
VDC string
|
|
}
|
|
|
|
func (c *Config) Client() (*govcd.VCDClient, error) {
|
|
u, err := url.ParseRequestURI(c.Href)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Unable to pass url: %s", err)
|
|
}
|
|
|
|
vcdclient := govcd.NewVCDClient(*u)
|
|
org, vcd, err := vcdclient.Authenticate(c.User, c.Password, c.Org, c.VDC)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("Unable to authenticate: %s", err)
|
|
}
|
|
vcdclient.Org = org
|
|
vcdclient.OrgVdc = vcd
|
|
return vcdclient, nil
|
|
}
|
|
|
|
func main() {
|
|
config := Config{
|
|
User: "Username",
|
|
Password: "password",
|
|
Org: "vcd org",
|
|
Href: "vcd api url",
|
|
VDC: "vcd virtual datacenter name",
|
|
}
|
|
|
|
client, err := config.Client() // We now have a client
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
os.Exit(1)
|
|
}
|
|
fmt.Printf("Org URL: %s\n", client.OrgHREF.String())
|
|
}
|
|
```
|