-
Notifications
You must be signed in to change notification settings - Fork 5
/
resource_hostlease.go
120 lines (109 loc) · 2.72 KB
/
resource_hostlease.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
package main
import (
"fmt"
"regexp"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
)
func hostLease() *schema.Resource {
return &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Description: "lease_name in lowercase",
ForceNew: true,
ValidateFunc: validateName,
},
"mac_address": {
Type: schema.TypeString,
Required: true,
Description: "mac address in lower-case",
},
"ip_address": {
Type: schema.TypeString,
Required: true,
Description: "ip address to assign for mac",
},
},
Create: resourceCreateLease,
Read: resourceReadLease,
Update: resourceUpdateLease,
Delete: resourceDeleteLease,
//Exists: resourceExistsLease,
Importer: &schema.ResourceImporter{
State: schema.ImportStatePassthrough,
},
}
}
func validateName(v interface{}, k string) (ws []string, es []error) {
var errs []error
var warns []string
value, ok := v.(string)
if !ok {
errs = append(errs, fmt.Errorf("Expected name to be string"))
return warns, errs
}
whiteSpace := regexp.MustCompile(`\s+`)
if whiteSpace.Match([]byte(value)) {
errs = append(errs, fmt.Errorf("name cannot contain whitespace. Got %s", value))
return warns, errs
}
return warns, errs
}
func resourceCreateLease(d *schema.ResourceData, m interface{}) error {
apiClient := m.(*Client)
lease := Reservations{
Hostname: d.Get("name").(string),
Hwaddress: d.Get("mac_address").(string),
Ipaddress: d.Get("ip_address").(string),
}
err := apiClient.NewLease(lease)
if err != nil {
return err
}
d.SetId(lease.Hostname)
return nil
}
func resourceUpdateLease(d *schema.ResourceData, m interface{}) error {
apiClient := m.(*Client)
lease := Reservations{
Hostname: d.Get("name").(string),
Hwaddress: d.Get("mac_address").(string),
Ipaddress: d.Get("ip_address").(string),
}
err := apiClient.UpdateLease(lease)
if err != nil {
return err
}
return nil
}
func resourceReadLease(d *schema.ResourceData, m interface{}) error {
apiClient := m.(*Client)
lease := Reservations{
Hostname: d.Get("name").(string),
Hwaddress: d.Get("mac_address").(string),
Ipaddress: d.Get("ip_address").(string),
}
ok := apiClient.ReadLease(lease)
if !ok {
d.SetId("")
}
return nil
}
func resourceDeleteLease(d *schema.ResourceData, m interface{}) error {
apiClient := m.(*Client)
lease := Reservations{
Hostname: d.Get("name").(string),
Hwaddress: d.Get("mac_address").(string),
Ipaddress: d.Get("ip_address").(string),
}
err := apiClient.DeleteLease(lease)
if err != nil {
return err
}
d.SetId("")
return nil
}
/*func resourceExistsLease(d *schema.ResourceData, m interface{}) error {
return nil
}*/