-
Notifications
You must be signed in to change notification settings - Fork 670
/
resource_ibm_is_public_gateway.go
457 lines (408 loc) · 13.8 KB
/
resource_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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package vpc
import (
"context"
"fmt"
"log"
"os"
"time"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/flex"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/validate"
"github.com/IBM/vpc-go-sdk/vpcv1"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/customdiff"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
)
const (
isPublicGatewayName = "name"
isPublicGatewayFloatingIP = "floating_ip"
isPublicGatewayStatus = "status"
isPublicGatewayVPC = "vpc"
isPublicGatewayZone = "zone"
isPublicGatewayFloatingIPAddress = "address"
isPublicGatewayTags = "tags"
isPublicGatewayProvisioning = "provisioning"
isPublicGatewayProvisioningDone = "available"
isPublicGatewayDeleting = "deleting"
isPublicGatewayDeleted = "done"
isPublicGatewayCRN = "crn"
isPublicGatewayResourceGroup = "resource_group"
)
func ResourceIBMISPublicGateway() *schema.Resource {
return &schema.Resource{
Create: resourceIBMISPublicGatewayCreate,
Read: resourceIBMISPublicGatewayRead,
Update: resourceIBMISPublicGatewayUpdate,
Delete: resourceIBMISPublicGatewayDelete,
Exists: resourceIBMISPublicGatewayExists,
Importer: &schema.ResourceImporter{},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Delete: schema.DefaultTimeout(10 * time.Minute),
},
CustomizeDiff: customdiff.Sequence(
func(_ context.Context, diff *schema.ResourceDiff, v interface{}) error {
return flex.ResourceTagsCustomizeDiff(diff)
},
),
Schema: map[string]*schema.Schema{
isPublicGatewayName: {
Type: schema.TypeString,
Required: true,
ForceNew: false,
ValidateFunc: validate.InvokeValidator("ibm_is_public_gateway", isPublicGatewayName),
Description: "Name of the Public gateway instance",
},
isPublicGatewayFloatingIP: {
Type: schema.TypeMap,
Optional: true,
Computed: true,
DiffSuppressFunc: flex.ApplyOnce,
},
isPublicGatewayStatus: {
Type: schema.TypeString,
Computed: true,
Description: "Public gateway instance status",
},
isPublicGatewayResourceGroup: {
Type: schema.TypeString,
ForceNew: true,
Optional: true,
Computed: true,
Description: "Public gateway resource group info",
},
isPublicGatewayVPC: {
Type: schema.TypeString,
ForceNew: true,
Required: true,
Description: "Public gateway VPC info",
},
isPublicGatewayZone: {
Type: schema.TypeString,
ForceNew: true,
Required: true,
Description: "Public gateway zone info",
},
isPublicGatewayTags: {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeString, ValidateFunc: validate.InvokeValidator("ibm_is_public_gateway", "tag")},
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",
},
flex.ResourceCRN: {
Type: schema.TypeString,
Computed: true,
Description: "The crn of the resource",
},
isPublicGatewayCRN: {
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 ResourceIBMISPublicGatewayValidator() *validate.ResourceValidator {
validateSchema := make([]validate.ValidateSchema, 0)
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: isPublicGatewayName,
ValidateFunctionIdentifier: validate.ValidateRegexpLen,
Type: validate.TypeString,
Required: true,
Regexp: `^([a-z]|[a-z][-a-z0-9]*[a-z0-9])$`,
MinValueLength: 1,
MaxValueLength: 63})
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: "tag",
ValidateFunctionIdentifier: validate.ValidateRegexpLen,
Type: validate.TypeString,
Optional: true,
Regexp: `^[A-Za-z0-9:_ .-]+$`,
MinValueLength: 1,
MaxValueLength: 128})
ibmISPublicGatewayResourceValidator := validate.ResourceValidator{ResourceName: "ibm_is_public_gateway", Schema: validateSchema}
return &ibmISPublicGatewayResourceValidator
}
func resourceIBMISPublicGatewayCreate(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
name := d.Get(isPublicGatewayName).(string)
vpc := d.Get(isPublicGatewayVPC).(string)
zone := d.Get(isPublicGatewayZone).(string)
options := &vpcv1.CreatePublicGatewayOptions{
Name: &name,
VPC: &vpcv1.VPCIdentity{
ID: &vpc,
},
Zone: &vpcv1.ZoneIdentity{
Name: &zone,
},
}
floatingipID := ""
floatingipadd := ""
if floatingipdataIntf, ok := d.GetOk(isPublicGatewayFloatingIP); ok && floatingipdataIntf != nil {
fip := &vpcv1.PublicGatewayFloatingIPPrototype{}
floatingipdata := floatingipdataIntf.(map[string]interface{})
if floatingipidintf, ok := floatingipdata["id"]; ok && floatingipidintf != nil {
floatingipID = floatingipidintf.(string)
fip.ID = &floatingipID
}
if floatingipaddintf, ok := floatingipdata[isPublicGatewayFloatingIPAddress]; ok && floatingipaddintf != nil {
floatingipadd = floatingipaddintf.(string)
fip.Address = &floatingipadd
}
options.FloatingIP = fip
}
if grp, ok := d.GetOk(isPublicGatewayResourceGroup); ok {
rg := grp.(string)
options.ResourceGroup = &vpcv1.ResourceGroupIdentity{
ID: &rg,
}
}
publicgw, response, err := sess.CreatePublicGateway(options)
if err != nil {
return fmt.Errorf("[ERROR] Error while creating Public Gateway %s\n%s", err, response)
}
d.SetId(*publicgw.ID)
log.Printf("[INFO] PublicGateway : %s", *publicgw.ID)
_, err = isWaitForPublicGatewayAvailable(sess, d.Id(), d.Timeout(schema.TimeoutCreate))
if err != nil {
return err
}
v := os.Getenv("IC_ENV_TAGS")
if _, ok := d.GetOk(isPublicGatewayTags); ok || v != "" {
oldList, newList := d.GetChange(isPublicGatewayTags)
err = flex.UpdateTagsUsingCRN(oldList, newList, meta, *publicgw.CRN)
if err != nil {
log.Printf(
"Error on create of vpc public gateway (%s) tags: %s", d.Id(), err)
}
}
return resourceIBMISPublicGatewayRead(d, meta)
}
func isWaitForPublicGatewayAvailable(publicgwC *vpcv1.VpcV1, id string, timeout time.Duration) (interface{}, error) {
log.Printf("Waiting for public gateway (%s) to be available.", id)
stateConf := &resource.StateChangeConf{
Pending: []string{"retry", isPublicGatewayProvisioning},
Target: []string{isPublicGatewayProvisioningDone, ""},
Refresh: isPublicGatewayRefreshFunc(publicgwC, id),
Timeout: timeout,
Delay: 10 * time.Second,
MinTimeout: 10 * time.Second,
}
return stateConf.WaitForState()
}
func isPublicGatewayRefreshFunc(publicgwC *vpcv1.VpcV1, id string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
publicgw, response, err := publicgwC.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
return nil, "", fmt.Errorf("[ERROR] Error getting Public Gateway : %s\n%s", err, response)
}
if *publicgw.Status == isPublicGatewayProvisioningDone {
return publicgw, isPublicGatewayProvisioningDone, nil
}
return publicgw, isPublicGatewayProvisioning, nil
}
}
func resourceIBMISPublicGatewayRead(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
id := d.Id()
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
publicgw, response, err := sess.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
if response != nil && response.StatusCode == 404 {
d.SetId("")
return nil
}
return fmt.Errorf("[ERROR] Error getting Public Gateway : %s\n%s", err, response)
}
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", 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
}
func resourceIBMISPublicGatewayUpdate(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
id := d.Id()
name := ""
hasChanged := false
if d.HasChange(isPublicGatewayName) {
name = d.Get(isPublicGatewayName).(string)
hasChanged = true
}
if d.HasChange(isPublicGatewayTags) {
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
publicgw, response, err := sess.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
return fmt.Errorf("[ERROR] Error getting Public Gateway : %s\n%s", err, response)
}
oldList, newList := d.GetChange(isPublicGatewayTags)
err = flex.UpdateTagsUsingCRN(oldList, newList, meta, *publicgw.CRN)
if err != nil {
log.Printf(
"Error on update of resource Public Gateway (%s) tags: %s", id, err)
}
}
if hasChanged {
updatePublicGatewayOptions := &vpcv1.UpdatePublicGatewayOptions{
ID: &id,
}
PublicGatewayPatchModel := &vpcv1.PublicGatewayPatch{
Name: &name,
}
PublicGatewayPatch, err := PublicGatewayPatchModel.AsPatch()
if err != nil {
return fmt.Errorf("[ERROR] Error calling asPatch for PublicGatewayPatch: %s", err)
}
updatePublicGatewayOptions.PublicGatewayPatch = PublicGatewayPatch
_, response, err := sess.UpdatePublicGateway(updatePublicGatewayOptions)
if err != nil {
return fmt.Errorf("[ERROR] Error Updating Public Gateway : %s\n%s", err, response)
}
}
return resourceIBMISPublicGatewayRead(d, meta)
}
func resourceIBMISPublicGatewayDelete(d *schema.ResourceData, meta interface{}) error {
sess, err := vpcClient(meta)
if err != nil {
return err
}
id := d.Id()
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
_, response, err := sess.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
if response != nil && response.StatusCode == 404 {
d.SetId("")
return nil
}
return fmt.Errorf("[ERROR] Error Getting Public Gateway (%s): %s\n%s", id, err, response)
}
deletePublicGatewayOptions := &vpcv1.DeletePublicGatewayOptions{
ID: &id,
}
response, err = sess.DeletePublicGateway(deletePublicGatewayOptions)
if err != nil {
return fmt.Errorf("[ERROR] Error Deleting Public Gateway : %s\n%s", err, response)
}
_, err = isWaitForPublicGatewayDeleted(sess, id, d.Timeout(schema.TimeoutDelete))
if err != nil {
return err
}
d.SetId("")
return nil
}
func isWaitForPublicGatewayDeleted(pg *vpcv1.VpcV1, id string, timeout time.Duration) (interface{}, error) {
log.Printf("Waiting for public gateway (%s) to be deleted.", id)
stateConf := &resource.StateChangeConf{
Pending: []string{"retry", isPublicGatewayDeleting},
Target: []string{isPublicGatewayDeleted, ""},
Refresh: isPublicGatewayDeleteRefreshFunc(pg, id),
Timeout: timeout,
Delay: 10 * time.Second,
MinTimeout: 10 * time.Second,
}
return stateConf.WaitForState()
}
func isPublicGatewayDeleteRefreshFunc(pg *vpcv1.VpcV1, id string) resource.StateRefreshFunc {
return func() (interface{}, string, error) {
log.Printf("[DEBUG] is pubic gateway delete function here")
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
pgw, response, err := pg.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
if response != nil && response.StatusCode == 404 {
return pgw, isPublicGatewayDeleted, nil
}
return nil, "", fmt.Errorf("[ERROR] The Public Gateway %s failed to delete: %s\n%s", id, err, response)
}
return pgw, isPublicGatewayDeleting, nil
}
}
func resourceIBMISPublicGatewayExists(d *schema.ResourceData, meta interface{}) (bool, error) {
sess, err := vpcClient(meta)
if err != nil {
return false, err
}
id := d.Id()
getPublicGatewayOptions := &vpcv1.GetPublicGatewayOptions{
ID: &id,
}
_, response, err := sess.GetPublicGateway(getPublicGatewayOptions)
if err != nil {
if response != nil && response.StatusCode == 404 {
return false, nil
}
return false, fmt.Errorf("[ERROR] Error getting Public Gateway: %s\n%s", err, response)
}
return true, nil
}