-
Notifications
You must be signed in to change notification settings - Fork 670
/
data_source_ibm_is_public_gateway.go
172 lines (153 loc) · 4.68 KB
/
data_source_ibm_is_public_gateway.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package vpc
import (
"fmt"
"log"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/flex"
"github.com/IBM/vpc-go-sdk/vpcv1"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
func DataSourceIBMISPublicGateway() *schema.Resource {
return &schema.Resource{
Read: dataSourceIBMISPublicGatewayRead,
Schema: map[string]*schema.Schema{
isPublicGatewayName: {
Type: schema.TypeString,
Required: true,
Description: "Public gateway Name",
},
isPublicGatewayFloatingIP: {
Type: schema.TypeMap,
Computed: true,
Description: "Public gateway floating IP",
},
isPublicGatewayStatus: {
Type: schema.TypeString,
Computed: true,
Description: "Public gateway instance status",
},
isPublicGatewayResourceGroup: {
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "Public gateway resource group info",
},
isPublicGatewayVPC: {
Type: schema.TypeString,
Computed: true,
Description: "Public gateway VPC info",
},
isPublicGatewayZone: {
Type: schema.TypeString,
Computed: true,
Description: "Public gateway zone info",
},
isPublicGatewayTags: {
Type: schema.TypeSet,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: flex.ResourceIBMVPCHash,
Description: "Service tags for the public gateway instance",
},
flex.ResourceControllerURL: {
Type: schema.TypeString,
Computed: true,
Description: "The URL of the IBM Cloud dashboard that can be used to explore and view details about this instance",
},
flex.ResourceName: {
Type: schema.TypeString,
Computed: true,
Description: "The name of the resource",
},
isPublicGatewayCRN: {
Type: schema.TypeString,
Computed: true,
Description: "The crn of the resource",
},
flex.ResourceCRN: {
Type: schema.TypeString,
Computed: true,
Description: "The crn of the resource",
},
flex.ResourceStatus: {
Type: schema.TypeString,
Computed: true,
Description: "The status of the resource",
},
flex.ResourceGroupName: {
Type: schema.TypeString,
Computed: true,
Description: "The resource group name in which resource is provisioned",
},
},
}
}
func dataSourceIBMISPublicGatewayRead(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
name := d.Get(isPublicGatewayName).(string)
rgroup := ""
if rg, ok := d.GetOk(isPublicGatewayResourceGroup); ok {
rgroup = rg.(string)
}
start := ""
allrecs := []vpcv1.PublicGateway{}
for {
listPublicGatewaysOptions := &vpcv1.ListPublicGatewaysOptions{}
if start != "" {
listPublicGatewaysOptions.Start = &start
}
if rgroup != "" {
listPublicGatewaysOptions.ResourceGroupID = &rgroup
}
publicgws, response, err := sess.ListPublicGateways(listPublicGatewaysOptions)
if err != nil {
return fmt.Errorf("[ERROR] Error Fetching public gateways %s\n%s", err, response)
}
start = flex.GetNext(publicgws.Next)
allrecs = append(allrecs, publicgws.PublicGateways...)
if start == "" {
break
}
}
for _, publicgw := range allrecs {
if *publicgw.Name == name {
d.SetId(*publicgw.ID)
d.Set(isPublicGatewayName, *publicgw.Name)
if publicgw.FloatingIP != nil {
floatIP := map[string]interface{}{
"id": *publicgw.FloatingIP.ID,
isPublicGatewayFloatingIPAddress: *publicgw.FloatingIP.Address,
}
d.Set(isPublicGatewayFloatingIP, floatIP)
}
d.Set(isPublicGatewayStatus, *publicgw.Status)
d.Set(isPublicGatewayZone, *publicgw.Zone.Name)
d.Set(isPublicGatewayVPC, *publicgw.VPC.ID)
tags, err := flex.GetTagsUsingCRN(meta, *publicgw.CRN)
if err != nil {
log.Printf(
"Error on get of vpc public gateway (%s) tags: %s", *publicgw.ID, err)
}
d.Set(isPublicGatewayTags, tags)
controller, err := flex.GetBaseController(meta)
if err != nil {
return err
}
d.Set(flex.ResourceControllerURL, controller+"/vpc-ext/network/publicGateways")
d.Set(flex.ResourceName, *publicgw.Name)
d.Set(flex.ResourceCRN, *publicgw.CRN)
d.Set(isPublicGatewayCRN, *publicgw.CRN)
d.Set(flex.ResourceStatus, *publicgw.Status)
if publicgw.ResourceGroup != nil {
d.Set(isPublicGatewayResourceGroup, *publicgw.ResourceGroup.ID)
d.Set(flex.ResourceGroupName, *publicgw.ResourceGroup.Name)
}
return nil
}
}
return fmt.Errorf("[ERROR] No Public gateway found with name %s", name)
}