forked from IBM-Cloud/terraform-provider-ibm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata_source_ibm_pi_instance_ip.go
112 lines (101 loc) · 3.31 KB
/
data_source_ibm_pi_instance_ip.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
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package power
import (
"context"
"log"
"net"
"strconv"
"github.com/IBM-Cloud/power-go-client/clients/instance"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/conns"
"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"
)
func DataSourceIBMPIInstanceIP() *schema.Resource {
return &schema.Resource{
ReadContext: dataSourceIBMPIInstancesIPRead,
Schema: map[string]*schema.Schema{
// Arguments
Arg_CloudInstanceID: {
Description: "The GUID of the service instance associated with an account.",
Required: true,
Type: schema.TypeString,
ValidateFunc: validation.NoZeroValues,
},
Arg_InstanceName: {
Description: "The unique identifier or name of the instance.",
Required: true,
Type: schema.TypeString,
ValidateFunc: validation.NoZeroValues,
},
Arg_NetworkName: {
Description: "The subnet that the instance belongs to.",
Type: schema.TypeString,
Required: true,
ValidateFunc: validation.NoZeroValues,
},
// Attributes
Attr_ExternalIP: {
Computed: true,
Description: "The external IP of the network that is attached to this instance.",
Type: schema.TypeString,
},
Attr_IP: {
Computed: true,
Description: "The IP address that is attached to this instance from the subnet.",
Type: schema.TypeString,
},
Attr_IPOctet: {
Computed: true,
Description: "The IP octet of the network that is attached to this instance.",
Type: schema.TypeString,
},
Attr_MacAddress: {
Computed: true,
Description: "The MAC address of the network that is attached to this instance.",
Type: schema.TypeString,
},
Attr_NetworkID: {
Computed: true,
Description: "ID of the network.",
Type: schema.TypeString,
},
Attr_Type: {
Computed: true,
Description: "The type of the network that is attached to this instance.",
Type: schema.TypeString,
},
},
}
}
func dataSourceIBMPIInstancesIPRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
sess, err := meta.(conns.ClientSession).IBMPISession()
if err != nil {
return diag.FromErr(err)
}
cloudInstanceID := d.Get(Arg_CloudInstanceID).(string)
networkName := d.Get(Arg_NetworkName).(string)
powerC := instance.NewIBMPIInstanceClient(ctx, sess, cloudInstanceID)
powervmdata, err := powerC.Get(d.Get(Arg_InstanceName).(string))
if err != nil {
return diag.FromErr(err)
}
for _, network := range powervmdata.Networks {
if network.NetworkName == networkName {
log.Printf("Printing the ip %s", network.IPAddress)
d.SetId(network.NetworkID)
d.Set(Attr_ExternalIP, network.ExternalIP)
d.Set(Attr_IP, network.IPAddress)
d.Set(Attr_MacAddress, network.MacAddress)
d.Set(Attr_NetworkID, network.NetworkID)
d.Set(Attr_Type, network.Type)
IPObject := net.ParseIP(network.IPAddress).To4()
if len(IPObject) > 0 {
d.Set(Attr_IPOctet, strconv.Itoa(int(IPObject[3])))
}
return nil
}
}
return diag.Errorf("failed to find instance ip that belongs to the given network")
}