-
Notifications
You must be signed in to change notification settings - Fork 670
/
data_source_ibm_pi_dhcps.go
120 lines (104 loc) · 3.12 KB
/
data_source_ibm_pi_dhcps.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package power
import (
"context"
"log"
st "github.com/IBM-Cloud/power-go-client/clients/instance"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/conns"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
)
/*
Datasource to get the list of dhcp servers in a power instance
*/
func DataSourceIBMPIDhcps() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceIBMPIDhcpServersRead,
Schema: map[string]*schema.Schema{
// Required Arguments
Arg_CloudInstanceID: {
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.NoZeroValues,
},
// Attributes
Attr_DhcpServers: {
Type: schema.TypeList,
Computed: true,
Description: "The list of all the DHCP Servers",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
Attr_DhcpID: {
Type: schema.TypeString,
Computed: true,
Description: "The ID of the DHCP Server",
},
Attr_DhcpNetworkDeprecated: {
Type: schema.TypeString,
Computed: true,
Description: "The ID of the DHCP Server private network (deprecated - replaced by network_id)",
},
Attr_DhcpNetworkID: {
Type: schema.TypeString,
Computed: true,
Description: "The ID of the DHCP Server private network",
},
Attr_DhcpNetworkName: {
Type: schema.TypeString,
Computed: true,
Description: "The name of the DHCP Server private network",
},
Attr_DhcpStatus: {
Type: schema.TypeString,
Computed: true,
Description: "The status of the DHCP Server",
},
},
},
},
},
}
}
func dataSourceIBMPIDhcpServersRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
// session and client
sess, err := meta.(conns.ClientSession).IBMPISession()
if err != nil {
return diag.FromErr(err)
}
// arguments
cloudInstanceID := d.Get(Arg_CloudInstanceID).(string)
// client
client := st.NewIBMPIDhcpClient(ctx, sess, cloudInstanceID)
// get all dhcp
dhcpServers, err := client.GetAll()
if err != nil {
log.Printf("[DEBUG] get all DHCP failed %v", err)
return diag.FromErr(err)
}
// set attributes
servers := make([]map[string]interface{}, 0, len(dhcpServers))
for _, dhcpServer := range dhcpServers {
server := map[string]interface{}{
Attr_DhcpID: *dhcpServer.ID,
Attr_DhcpStatus: *dhcpServer.Status,
}
if dhcpServer.Network != nil {
dhcpNetwork := dhcpServer.Network
if dhcpNetwork.ID != nil {
d.Set(Attr_DhcpNetworkDeprecated, *dhcpNetwork.ID)
d.Set(Attr_DhcpNetworkID, *dhcpNetwork.ID)
}
if dhcpNetwork.Name != nil {
d.Set(Attr_DhcpNetworkName, *dhcpNetwork.Name)
}
}
servers = append(servers, server)
}
var genID, _ = uuid.GenerateUUID()
d.SetId(genID)
d.Set(Attr_DhcpServers, servers)
return nil
}