-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathprovider.go
More file actions
79 lines (66 loc) · 1.86 KB
/
provider.go
File metadata and controls
79 lines (66 loc) · 1.86 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package main
import (
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
)
// Provider returns a terraform.ResourceProvider.
func Provider() terraform.ResourceProvider {
return &schema.Provider{
Schema: map[string]*schema.Schema{
"url": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Description: descriptions["url"],
},
"username": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Description: descriptions["username"],
},
"password": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Description: descriptions["password"],
},
"insecure": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Description: descriptions["insecure"],
},
"debug": &schema.Schema{
Type: schema.TypeBool,
Optional: true,
Description: descriptions["debug"],
},
},
/*ResourcesMap: map[string]*schema.Resource{
"foreman_dns": resourceDNS(),
},*/
ResourcesMap: map[string]*schema.Resource{
"foreman_server": resourceServer(),
},
ConfigureFunc: providerConfigure,
}
}
var descriptions map[string]string
func init() {
descriptions = map[string]string{
"url": "The Foreman server url. Example: \n" +
"https://foreman.example.com/api/v2/",
"username": "Foreman username with API access",
"password": "Foreman password",
"insecure": "Disable SSL checking on API. Defaults: false",
"debug": "Enable debug logging",
}
}
// Returns the meta object (API connection/token)
func providerConfigure(d *schema.ResourceData) (interface{}, error) {
config := Config{
Username: d.Get("username").(string),
Password: d.Get("password").(string),
URL: d.Get("url").(string),
Insecure: d.Get("insecure").(bool),
Debug: d.Get("debug").(bool),
}
return config.Client()
}