-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresource_deploy.go
70 lines (62 loc) · 1.56 KB
/
resource_deploy.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
package main
import (
"fmt"
goftd "github.com/bluecough/go-ftd"
"github.com/hashicorp/terraform-plugin-sdk/helper/schema"
"log"
)
func resourceDeployObject() *schema.Resource {
return &schema.Resource{
Create: resourceDeployCreate,
Read: resourceDeployRead,
Update: resourceDeployUpdate,
Delete: resourceDeployDelete,
Schema: map[string]*schema.Schema{
"name": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
"subtype": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
"value": &schema.Schema{
Type: schema.TypeString,
Required: true,
},
},
}
}
func resourceDeployCreate(d *schema.ResourceData, m interface{}) error {
cf := m.(*goftd.FTD)
n := new(goftd.DeployObject)
n.Name = d.Get("name").(string)
err := cf.PostDeploy(n)
if err != nil {
fmt.Errorf("error: %s\n", err)
}
d.SetId(n.Name)
return resourceDeployRead(d,m)
}
func resourceDeployRead(d *schema.ResourceData, m interface{}) error {
//cf := m.(*goftd.FTD)
log.Println("GS DEBUG === NetworkObjectRead== id ", d.Id())
//cf.GetNetworkObjectByID(d.Id())
return nil
}
func resourceDeployUpdate(d *schema.ResourceData, m interface{}) error {
//cf := m.(*goftd.FTD)
log.Println("GS DEBUG === NetworkObjectRead== id ", d.Id())
//cf.GetNetworkObjectByID(d.Id())
return nil
}
func resourceDeployDelete(d *schema.ResourceData, m interface{}) error {
cf := m.(*goftd.FTD)
n := new(goftd.DeployObject)
n.Name = d.Get("name").(string)
err := cf.PostDeploy(n)
if err != nil {
fmt.Errorf("error: %s\n", err)
}
return nil
}