-
Notifications
You must be signed in to change notification settings - Fork 8
/
datasource_view.go
87 lines (74 loc) · 2.09 KB
/
datasource_view.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
package datasources
import (
"context"
"github.com/MaterializeInc/terraform-provider-materialize/pkg/materialize"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/jmoiron/sqlx"
)
func View() *schema.Resource {
return &schema.Resource{
ReadContext: viewRead,
Schema: map[string]*schema.Schema{
"database_name": {
Type: schema.TypeString,
Optional: true,
Description: "Limit views to a specific database",
},
"schema_name": {
Type: schema.TypeString,
Optional: true,
Description: "Limit views to a specific schema within a specific database",
RequiredWith: []string{"database_name"},
},
"views": {
Type: schema.TypeList,
Computed: true,
Description: "The views in the account",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"id": {
Type: schema.TypeString,
Computed: true,
},
"name": {
Type: schema.TypeString,
Computed: true,
},
"schema_name": {
Type: schema.TypeString,
Computed: true,
},
"database_name": {
Type: schema.TypeString,
Computed: true,
},
},
},
},
},
}
}
func viewRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
schemaName := d.Get("schema_name").(string)
databaseName := d.Get("database_name").(string)
var diags diag.Diagnostics
dataSource, err := materialize.ListViews(meta.(*sqlx.DB), schemaName, databaseName)
if err != nil {
return diag.FromErr(err)
}
viewFormats := []map[string]interface{}{}
for _, p := range dataSource {
viewMap := map[string]interface{}{}
viewMap["id"] = p.ViewId.String
viewMap["name"] = p.ViewName.String
viewMap["schema_name"] = p.SchemaName.String
viewMap["database_name"] = p.DatabaseName.String
viewFormats = append(viewFormats, viewMap)
}
if err := d.Set("views", viewFormats); err != nil {
return diag.FromErr(err)
}
SetId("views", databaseName, schemaName, d)
return diags
}