This repository has been archived by the owner on Jan 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
provider.go
56 lines (49 loc) · 1.63 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
package main
import (
"github.com/hashicorp/terraform/helper/schema"
"github.com/hashicorp/terraform/terraform"
)
func Provider() terraform.ResourceProvider {
return &schema.Provider{
Schema: map[string]*schema.Schema{
"base_url": &schema.Schema{
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("CABOT_BASE_URL", nil),
Description: "The URL of the root of the target Cabot server.",
},
"username": &schema.Schema{
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("CABOT_USERNAME", nil),
Description: "The basic auth username for accessing Cabot API.",
},
"password": &schema.Schema{
Type: schema.TypeString,
Required: true,
DefaultFunc: schema.EnvDefaultFunc("CABOT_PASSWORD", nil),
Description: "The basic auth password for accessing Cabot API.",
},
},
DataSourcesMap: map[string]*schema.Resource{
"cabot_plugin": dataSourceCabotPlugin(),
},
ResourcesMap: map[string]*schema.Resource{
"cabot_check_graphite": resourceCabotCheckGraphite(),
"cabot_check_http": resourceCabotCheckHTTP(),
"cabot_check_icmp": resourceCabotCheckICMP(),
"cabot_check_jenkins": resourceCabotCheckJenkins(),
"cabot_instance": resourceCabotInstance(),
"cabot_service": resourceCabotService(),
},
ConfigureFunc: providerConfigure,
}
}
func providerConfigure(d *schema.ResourceData) (interface{}, error) {
config := Config{
BaseURL: d.Get("base_url").(string),
Username: d.Get("username").(string),
Password: d.Get("password").(string),
}
return config.Client()
}