-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresource_file.go
86 lines (80 loc) · 1.95 KB
/
resource_file.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
package main
import (
"fmt"
"github.com/hashicorp/terraform/helper/schema"
scalyr "github.com/scalyr/terraform-provider-dataset/scalyr-go"
)
func resourceFile() *schema.Resource {
return &schema.Resource{
Read: resourceFileRead,
Delete: resourceFileDelete,
Update: resourceFileUpdate,
Create: resourceFileCreate,
Schema: map[string]*schema.Schema{
"path": {
Type: schema.TypeString,
Required: true,
},
"version": {
Type: schema.TypeInt,
Computed: true,
},
"create_date": {
Type: schema.TypeString,
Computed: true,
},
"mod_date": {
Type: schema.TypeString,
Computed: true,
},
"content": {
Type: schema.TypeString,
Required: true,
},
},
}
}
func resourceFileCreate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*scalyr.ScalyrConfig)
path := d.Get("path").(string)
content := d.Get("content").(string)
_, err := client.PutFile(path, content)
if err != nil {
return err
}
return resourceFileRead(d, meta)
}
func resourceFileUpdate(d *schema.ResourceData, meta interface{}) error {
client := meta.(*scalyr.ScalyrConfig)
path := d.Get("path").(string)
content := d.Get("content").(string)
_, err := client.PutFile(path, content)
if err != nil {
return err
}
return resourceFileRead(d, meta)
}
func resourceFileDelete(d *schema.ResourceData, meta interface{}) error {
client := meta.(*scalyr.ScalyrConfig)
path := d.Get("path").(string)
err := client.DeleteFile(path)
if err != nil {
return err
}
d.SetId("")
return nil
}
func resourceFileRead(d *schema.ResourceData, meta interface{}) error {
client := meta.(*scalyr.ScalyrConfig)
path := d.Get("path").(string)
res, err := client.GetFile(path)
if err != nil {
return err
}
d.Set("content", res.Content)
d.Set("version", res.Version)
d.Set("create_date", res.CreateDate.String())
d.Set("mod_date", res.CreateDate.String())
d.SetId(fmt.Sprintf("%v", res.Version))
return nil
}