-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata_source_file.go
52 lines (48 loc) · 1.1 KB
/
data_source_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
package main
import (
"github.com/hashicorp/terraform/helper/schema"
_ "github.com/hashicorp/terraform/terraform"
scalyr "github.com/scalyr/terraform-provider-dataset/scalyr-go"
"time"
)
func datasourceFile() *schema.Resource {
return &schema.Resource{
Read: datasourceFileRead,
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,
Computed: true,
},
},
}
}
func datasourceFileRead(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(time.Now().UTC().String())
return nil
}