forked from terra-farm/terraform-provider-xenserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprovider.go
62 lines (50 loc) · 1.37 KB
/
provider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main
import (
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
)
// Provider ...
func Provider() terraform.ResourceProvider {
return &schema.Provider{
Schema: map[string]*schema.Schema{
"url": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "",
Description: descriptions["url"],
},
"username": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "",
Description: descriptions["username"],
},
"password": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Default: "",
Description: descriptions["password"],
},
},
ResourcesMap: map[string]*schema.Resource{
"xenserver_vm": resourceVM(),
},
ConfigureFunc: providerConfigure,
}
}
var descriptions map[string]string
func init() {
descriptions = map[string]string{
"url": "The URL to the XenAPI endpoint, typically \"https://<XenServer Management IP>\"",
"username": "The username to use to authenticate to XenServer",
"password": "The password to use to authenticate to XenServer",
}
}
func providerConfigure(d *schema.ResourceData) (interface{}, error) {
config := Config{
URL: d.Get("url").(string),
Username: d.Get("username").(string),
Password: d.Get("password").(string),
}
return config.NewConnection()
}