forked from oracle/terraform-provider-oci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_source_obmcs_identity_swift_password.go
73 lines (63 loc) · 1.7 KB
/
data_source_obmcs_identity_swift_password.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
// Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
package main
import (
"time"
"github.com/MustWin/baremetal-sdk-go"
"github.com/hashicorp/terraform/helper/schema"
"github.com/oracle/terraform-provider-baremetal/client"
"github.com/oracle/terraform-provider-baremetal/crud"
)
func SwiftPasswordDatasource() *schema.Resource {
return &schema.Resource{
Read: readSwiftPasswords,
Schema: map[string]*schema.Schema{
"user_id": {
Type: schema.TypeString,
Required: true,
},
"passwords": {
Type: schema.TypeList,
Computed: true,
Elem: SwiftPasswordResource(),
},
},
}
}
func readSwiftPasswords(d *schema.ResourceData, m interface{}) (e error) {
client := m.(client.BareMetalClient)
sync := &SwiftPasswordDatasourceCrud{}
sync.D = d
sync.Client = client
return crud.ReadResource(sync)
}
type SwiftPasswordDatasourceCrud struct {
crud.BaseCrud
Res *baremetal.ListSwiftPasswords
}
func (s *SwiftPasswordDatasourceCrud) Get() (e error) {
userID := s.D.Get("user_id").(string)
s.Res, e = s.Client.ListSwiftPasswords(userID)
return
}
func (s *SwiftPasswordDatasourceCrud) SetData() {
if s.Res != nil {
s.D.SetId(time.Now().UTC().String())
resources := []map[string]interface{}{}
for _, v := range s.Res.SwiftPasswords {
res := map[string]interface{}{
"id": v.ID,
"user_id": v.UserID,
"description": v.Description,
"state": v.State,
"inactive_state": v.InactiveStatus,
"time_created": v.TimeCreated.String(),
"expires_on": v.ExpiresOn.String(),
}
resources = append(resources, res)
}
if err := s.D.Set("passwords", resources); err != nil {
panic(err)
}
}
return
}