-
Notifications
You must be signed in to change notification settings - Fork 669
/
resource_ibm_storage_file.go
1560 lines (1336 loc) · 46.1 KB
/
resource_ibm_storage_file.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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright IBM Corp. 2017, 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package classicinfrastructure
import (
"bytes"
"fmt"
"log"
"regexp"
"strconv"
"strings"
"time"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/conns"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/flex"
"github.com/IBM-Cloud/terraform-provider-ibm/ibm/validate"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/softlayer/softlayer-go/datatypes"
"github.com/softlayer/softlayer-go/filter"
"github.com/softlayer/softlayer-go/helpers/location"
"github.com/softlayer/softlayer-go/helpers/product"
"github.com/softlayer/softlayer-go/services"
"github.com/softlayer/softlayer-go/session"
"github.com/softlayer/softlayer-go/sl"
)
const (
storagePackageType = "STORAGE_AS_A_SERVICE"
storageMask = "id,billingItem.orderItem.order.id"
storageDetailMask = "id,billingItem[location],storageTierLevel,provisionedIops,capacityGb,iops,lunId,storageType[keyName,description],username,serviceResourceBackendIpAddress,properties[type]" +
",serviceResourceName,allowedIpAddresses[id,ipAddress,subnetId,allowedHost[name,credential[username,password]]],allowedSubnets[allowedHost[name,credential[username,password]]],allowedHardware[allowedHost[name,credential[username,password]]],allowedVirtualGuests[id,allowedHost[name,credential[username,password]]],snapshotCapacityGb,osType,notes,billingItem[hourlyFlag],serviceResource[datacenter[name]],schedules[dayOfWeek,hour,minute,retentionCount,type[keyname,name]],iscsiTargetIpAddresses"
itemMask = "id,capacity,description,units,keyName,capacityMinimum,capacityMaximum,prices[id,categories[id,name,categoryCode],capacityRestrictionMinimum,capacityRestrictionMaximum,capacityRestrictionType,locationGroupId],itemCategory[categoryCode]"
enduranceType = "Endurance"
performanceType = "Performance"
fileStorage = "file"
blockStorage = "block"
retryTime = 5
)
var (
// Map IOPS value to endurance storage tier keyName in SoftLayer_Product_Item
enduranceIopsMap = map[float64]string{
0.25: "LOW_INTENSITY_TIER",
2: "READHEAVY_TIER",
4: "WRITEHEAVY_TIER",
10: "10_IOPS_PER_GB",
}
// Map IOPS value to endurance storage tier capacityRestrictionMaximum/capacityRestrictionMinimum in SoftLayer_Product_Item
enduranceCapacityRestrictionMap = map[float64]int{
0.25: 100,
2: 200,
4: 300,
10: 1000,
}
snapshotDay = map[string]string{
"0": "SUNDAY",
"1": "MONDAY",
"2": "TUESDAY",
"3": "WEDNESDAY",
"4": "THURSDAY",
"5": "FRIDAY",
"6": "SATURDAY",
}
)
func ResourceIBMStorageFile() *schema.Resource {
return &schema.Resource{
Create: resourceIBMStorageFileCreate,
Read: resourceIBMStorageFileRead,
Update: resourceIBMStorageFileUpdate,
Delete: resourceIBMStorageFileDelete,
Exists: resourceIBMStorageFileExists,
Importer: &schema.ResourceImporter{},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(45 * time.Minute),
Update: schema.DefaultTimeout(45 * time.Minute),
Delete: schema.DefaultTimeout(45 * time.Minute),
},
Schema: map[string]*schema.Schema{
"type": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validate.ValidateStorageType,
Description: "Storage type",
},
"datacenter": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "Datacenter name",
},
"capacity": {
Type: schema.TypeInt,
Required: true,
Description: "Storage capacity",
},
"iops": {
Type: schema.TypeFloat,
Required: true,
Description: "iops rate",
},
"volumename": {
Type: schema.TypeString,
Computed: true,
Description: "Storage volume name",
},
"hostname": {
Type: schema.TypeString,
Computed: true,
Description: "Hostname",
},
"snapshot_capacity": {
Type: schema.TypeInt,
Optional: true,
ForceNew: true,
Description: "Snapshot capacity",
},
"allowed_virtual_guest_ids": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeInt},
Set: func(v interface{}) int {
return v.(int)
},
Description: "Virtual guest ID",
},
"allowed_hardware_ids": {
Type: schema.TypeSet,
Optional: true,
Computed: true,
Elem: &schema.Schema{Type: schema.TypeInt},
Set: func(v interface{}) int {
return v.(int)
},
Description: "Hardaware ID",
},
"allowed_subnets": {
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
Description: "Allowed network subnets",
},
"allowed_ip_addresses": {
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
Description: "Allowed range of IP addresses",
},
"notes": {
Type: schema.TypeString,
Optional: true,
Description: "Notes",
},
"snapshot_schedule": {
Type: schema.TypeSet,
Optional: true,
MaxItems: 3,
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"schedule_type": {
Type: schema.TypeString,
Required: true,
ValidateFunc: validate.ValidateScheduleType,
Description: "schedule type",
},
"retention_count": {
Type: schema.TypeInt,
Required: true,
Description: "Retention count",
},
"minute": {
Type: schema.TypeInt,
Optional: true,
ValidateFunc: validate.ValidateMinute(0, 59),
Description: "Time duration in minutes",
},
"hour": {
Type: schema.TypeInt,
Optional: true,
ValidateFunc: validate.ValidateHour(0, 23),
Description: "Time duration in hour",
},
"day_of_week": {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validate.ValidateDayOfWeek,
Description: "Day of the week",
},
"enable": {
Type: schema.TypeBool,
Optional: true,
},
},
},
Set: resourceIBMFilSnapshotHash,
},
"mountpoint": {
Type: schema.TypeString,
Computed: true,
Description: "Storage mount point",
},
"tags": {
Type: schema.TypeSet,
Optional: true,
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
Description: "Tags set for the storage volume",
},
"hourly_billing": {
Type: schema.TypeBool,
Optional: true,
Default: false,
ForceNew: true,
Description: "Hourly based billing type",
},
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.ResourceStatus: {
Type: schema.TypeString,
Computed: true,
Description: "The status of the resource",
},
},
}
}
func resourceIBMStorageFileCreate(d *schema.ResourceData, meta interface{}) error {
sess := meta.(conns.ClientSession).SoftLayerSession()
storageType := d.Get("type").(string)
iops := d.Get("iops").(float64)
datacenter := d.Get("datacenter").(string)
capacity := d.Get("capacity").(int)
snapshotCapacity := d.Get("snapshot_capacity").(int)
hourlyBilling := d.Get("hourly_billing").(bool)
var (
storageOrderContainer datatypes.Container_Product_Order
err error
)
storageOrderContainer, err = buildStorageProductOrderContainer(sess, storageType, iops, capacity, snapshotCapacity, fileStorage, datacenter, hourlyBilling)
if err != nil {
return fmt.Errorf("[ERROR] Error while creating storage:%s", err)
}
log.Println("[INFO] Creating storage")
var receipt datatypes.Container_Product_Order_Receipt
switch storageType {
case enduranceType:
receipt, err = services.GetProductOrderService(sess.SetRetries(0)).PlaceOrder(
&datatypes.Container_Product_Order_Network_Storage_AsAService{
Container_Product_Order: storageOrderContainer,
VolumeSize: &capacity,
}, sl.Bool(false))
case performanceType:
receipt, err = services.GetProductOrderService(sess.SetRetries(0)).PlaceOrder(
&datatypes.Container_Product_Order_Network_Storage_AsAService{
Container_Product_Order: storageOrderContainer,
VolumeSize: &capacity,
Iops: sl.Int(int(iops)),
}, sl.Bool(false))
default:
return fmt.Errorf("[ERROR] Error during creation of storage: Invalid storageType %s", storageType)
}
if err != nil {
return fmt.Errorf("[ERROR] Error during creation of storage: %s", err)
}
// Find the storage device
fileStorage, err := findStorageByOrderId(sess, *receipt.OrderId, d.Timeout(schema.TimeoutCreate))
if err != nil {
return fmt.Errorf("[ERROR] Error during creation of storage: %s", err)
}
d.SetId(fmt.Sprintf("%d", *fileStorage.Id))
// Wait for storage availability
_, err = WaitForStorageAvailable(d, meta)
if err != nil {
return fmt.Errorf("[ERROR] Error waiting for storage (%s) to become ready: %s", d.Id(), err)
}
// SoftLayer changes the device ID after completion of provisioning. It is necessary to refresh device ID.
fileStorage, err = findStorageByOrderId(sess, *receipt.OrderId, d.Timeout(schema.TimeoutCreate))
if err != nil {
return fmt.Errorf("[ERROR] Error during creation of storage: %s", err)
}
d.SetId(fmt.Sprintf("%d", *fileStorage.Id))
log.Printf("[INFO] Storage ID: %s", d.Id())
return resourceIBMStorageFileUpdate(d, meta)
}
func resourceIBMStorageFileRead(d *schema.ResourceData, meta interface{}) error {
sess := meta.(conns.ClientSession).SoftLayerSession()
storageId, _ := strconv.Atoi(d.Id())
storage, err := services.GetNetworkStorageService(sess).
Id(storageId).
Mask(storageDetailMask + ",volumeStatus").
GetObject()
if err != nil {
return fmt.Errorf("[ERROR] Error retrieving storage information: %s", err)
}
storageType, err := getStorageTypeFromKeyName(*storage.StorageType.KeyName)
if err != nil {
return fmt.Errorf("[ERROR] Error retrieving storage information: %s", err)
}
// Calculate IOPS
iops, err := getIops(storage, storageType)
if err != nil {
return fmt.Errorf("[ERROR] Error retrieving storage information: %s", err)
}
d.Set("iops", iops)
d.Set("type", storageType)
d.Set("capacity", *storage.CapacityGb)
d.Set("volumename", *storage.Username)
d.Set("hostname", *storage.ServiceResourceBackendIpAddress)
if storage.SnapshotCapacityGb != nil {
snapshotCapacity, _ := strconv.Atoi(*storage.SnapshotCapacityGb)
d.Set("snapshot_capacity", snapshotCapacity)
}
// Parse data center short name from ServiceResourceName. For example,
// if SoftLayer API returns "'serviceResourceName': 'PerfStor Aggr aggr_staasdal0601_p01'",
// the data center short name is "dal06".
r, _ := regexp.Compile("[a-zA-Z]{3}[0-9]{2}")
d.Set("datacenter", strings.ToLower(r.FindString(*storage.ServiceResourceName)))
// Read allowed_ip_addresses
allowedIpaddressesList := make([]string, 0, len(storage.AllowedIpAddresses))
for _, allowedIpaddress := range storage.AllowedIpAddresses {
allowedIpaddressesList = append(allowedIpaddressesList, *allowedIpaddress.IpAddress)
}
d.Set("allowed_ip_addresses", allowedIpaddressesList)
// Read allowed_subnets
allowedSubnetsList := make([]string, 0, len(storage.AllowedSubnets))
for _, allowedSubnets := range storage.AllowedSubnets {
allowedSubnetsList = append(allowedSubnetsList, *allowedSubnets.NetworkIdentifier+"/"+strconv.Itoa(*allowedSubnets.Cidr))
}
d.Set("allowed_subnets", allowedSubnetsList)
// Read allowed_virtual_guest_ids
allowedVirtualGuestIdsList := make([]int, 0, len(storage.AllowedVirtualGuests))
for _, allowedVirtualGuest := range storage.AllowedVirtualGuests {
allowedVirtualGuestIdsList = append(allowedVirtualGuestIdsList, *allowedVirtualGuest.Id)
}
d.Set("allowed_virtual_guest_ids", allowedVirtualGuestIdsList)
// Read allowed_hardware_ids
allowedHardwareIdsList := make([]int, 0, len(storage.AllowedHardware))
for _, allowedHW := range storage.AllowedHardware {
allowedHardwareIdsList = append(allowedHardwareIdsList, *allowedHW.Id)
}
d.Set("allowed_hardware_ids", allowedHardwareIdsList)
if storage.OsType != nil {
d.Set("os_type", *storage.OsType.Name)
}
if storage.Notes != nil {
d.Set("notes", *storage.Notes)
}
mountpoint, err := services.GetNetworkStorageService(sess).Id(storageId).GetFileNetworkMountAddress()
if err != nil {
return fmt.Errorf("[ERROR] Error retrieving storage information: %s", err)
}
d.Set("mountpoint", mountpoint)
if storage.BillingItem != nil {
d.Set("hourly_billing", storage.BillingItem.HourlyFlag)
}
schds := make([]interface{}, len(storage.Schedules))
for i, schd := range storage.Schedules {
s := make(map[string]interface{})
s["retention_count"], _ = strconv.Atoi(*schd.RetentionCount)
if *schd.Minute != "-1" {
s["minute"], _ = strconv.Atoi(*schd.Minute)
}
if *schd.Hour != "-1" {
s["hour"], _ = strconv.Atoi(*schd.Hour)
}
if *schd.Active > 0 {
s["enable"], _ = strconv.ParseBool("true")
} else {
s["enable"], _ = strconv.ParseBool("false")
}
if *schd.DayOfWeek != "-1" {
s["day_of_week"] = snapshotDay[*schd.DayOfWeek]
}
stype := *schd.Type.Keyname
stype = stype[strings.LastIndex(stype, "_")+1:]
s["schedule_type"] = stype
schds[i] = s
}
d.Set("snapshot_schedule", schds)
d.Set(flex.ResourceControllerURL, fmt.Sprintf("https://cloud.ibm.com/classic/storage/file/%s", d.Id()))
d.Set(flex.ResourceName, *storage.ServiceResourceName)
d.Set(flex.ResourceStatus, *storage.VolumeStatus)
return nil
}
func resourceIBMStorageFileUpdate(d *schema.ResourceData, meta interface{}) error {
sess := meta.(conns.ClientSession).SoftLayerSession()
id, err := strconv.Atoi(d.Id())
if err != nil {
return fmt.Errorf("[ERROR] Not a valid ID, must be an integer: %s", err)
}
storage, err := services.GetNetworkStorageService(sess).
Id(id).
Mask(storageDetailMask).
GetObject()
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
// Update allowed_ip_addresses
if d.HasChange("allowed_ip_addresses") {
err := updateAllowedIpAddresses(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
}
// Update allowed_subnets
if d.HasChange("allowed_subnets") {
err := updateAllowedSubnets(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
}
// Update allowed_virtual_guest_ids
if d.HasChange("allowed_virtual_guest_ids") {
err := updateAllowedVirtualGuestIds(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
}
// Update allowed_hardware_ids
if d.HasChange("allowed_hardware_ids") {
err := updateAllowedHardwareIds(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
}
// Update notes
if d.HasChange("notes") {
err := updateNotes(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage information: %s", err)
}
}
// Enable Storage Snapshot Schedule
if d.HasChange("snapshot_schedule") {
err := enableStorageSnapshot(d, sess, storage)
if err != nil {
return fmt.Errorf("[ERROR] Error creating storage snapshot schedule: %s", err)
}
}
if (d.HasChange("capacity") || d.HasChange("iops")) && !d.IsNewResource() {
size := d.Get("capacity").(int)
iops := d.Get("iops").(float64)
modifyOrder, err := prepareModifyOrder(sess, storage, iops, size)
if err != nil {
return fmt.Errorf("[ERROR] Error updating storage: %s", err)
}
_, err = services.GetProductOrderService(sess.SetRetries(0)).PlaceOrder(
&datatypes.Container_Product_Order_Network_Storage_AsAService_Upgrade{
Container_Product_Order_Network_Storage_AsAService: modifyOrder,
Volume: &datatypes.Network_Storage{
Id: sl.Int(id),
},
}, sl.Bool(false))
// Wait for storage availability
_, err = WaitForStorageUpdate(d, meta)
if err != nil {
return fmt.Errorf(
"Error waiting for storage (%s) to update: %s", d.Id(), err)
}
}
return resourceIBMStorageFileRead(d, meta)
}
func resourceIBMStorageFileDelete(d *schema.ResourceData, meta interface{}) error {
sess := meta.(conns.ClientSession).SoftLayerSession()
storageService := services.GetNetworkStorageService(sess)
storageID, _ := strconv.Atoi(d.Id())
// Get billing item associated with the storage
billingItem, err := storageService.Id(storageID).GetBillingItem()
if err != nil {
return fmt.Errorf("[ERROR] Error while looking up billing item associated with the storage: %s", err)
}
if billingItem.Id == nil {
return fmt.Errorf("[ERROR] Error while looking up billing item associated with the storage: No billing item for ID:%d", storageID)
}
success, err := services.GetBillingItemService(sess).Id(*billingItem.Id).CancelService()
if err != nil {
return err
}
if !success {
return fmt.Errorf("SoftLayer reported an unsuccessful cancellation")
}
return nil
}
func resourceIBMStorageFileExists(d *schema.ResourceData, meta interface{}) (bool, error) {
sess := meta.(conns.ClientSession).SoftLayerSession()
storageID, err := strconv.Atoi(d.Id())
if err != nil {
return false, fmt.Errorf("[ERROR] Not a valid ID, must be an integer: %s", err)
}
_, err = services.GetNetworkStorageService(sess).
Id(storageID).
GetObject()
if err != nil {
if apiErr, ok := err.(sl.Error); ok && apiErr.StatusCode == 404 {
return false, nil
}
return false, fmt.Errorf("[ERROR] Error retrieving storage information: %s", err)
}
return true, nil
}
func buildStorageProductOrderContainer(
sess *session.Session,
storageType string,
iops float64,
capacity int,
snapshotCapacity int,
storageProtocol string,
datacenter string,
hourlyBilling bool) (datatypes.Container_Product_Order, error) {
// Get a package type)
pkg, err := product.GetPackageByType(sess, storagePackageType)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
// Get all prices
productItems, err := product.GetPackageProducts(sess, *pkg.Id, itemMask)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
// Add IOPS price
targetItemPrices := []datatypes.Product_Item_Price{}
if storageType == "Performance" {
price, err := getPriceByCategory(productItems, "storage_as_a_service")
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getPriceByCategory(productItems, "storage_"+storageProtocol)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getSaaSPerformSpacePrice(productItems, capacity)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getSaaSPerformIOPSPrice(productItems, capacity, int(iops))
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
} else {
price, err := getPriceByCategory(productItems, "storage_as_a_service")
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getPriceByCategory(productItems, "storage_"+storageProtocol)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getSaaSEnduranceSpacePrice(productItems, capacity, iops)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
price, err = getSaaSEnduranceTierPrice(productItems, iops)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
}
if snapshotCapacity > 0 {
price, err := getSaaSSnapshotSpacePrice(productItems, snapshotCapacity, iops, storageType)
if err != nil {
return datatypes.Container_Product_Order{}, err
}
targetItemPrices = append(targetItemPrices, price)
}
// Lookup the data center ID
dc, err := location.GetDatacenterByName(sess, datacenter)
if err != nil {
return datatypes.Container_Product_Order{},
fmt.Errorf("[ERROR] No data centers matching %s could be found", datacenter)
}
productOrderContainer := datatypes.Container_Product_Order{
PackageId: pkg.Id,
Location: sl.String(strconv.Itoa(*dc.Id)),
Prices: targetItemPrices,
Quantity: sl.Int(1),
UseHourlyPricing: sl.Bool(hourlyBilling),
}
return productOrderContainer, nil
}
func findStorageByOrderId(sess *session.Session, orderId int, timeout time.Duration) (datatypes.Network_Storage, error) {
filterPath := "networkStorage.billingItem.orderItem.order.id"
stateConf := &resource.StateChangeConf{
Pending: []string{"pending"},
Target: []string{"complete"},
Refresh: func() (interface{}, string, error) {
storage, err := services.GetAccountService(sess).
Filter(filter.Build(
filter.Path(filterPath).
Eq(strconv.Itoa(orderId)))).
Mask(storageMask).
GetNetworkStorage()
if err != nil {
return datatypes.Network_Storage{}, "", err
}
if len(storage) == 1 {
return storage[0], "complete", nil
} else if len(storage) == 0 {
return datatypes.Network_Storage{}, "pending", nil
} else {
return nil, "", fmt.Errorf("[ERROR] Expected one Storage: %s", err)
}
},
Timeout: timeout,
Delay: 10 * time.Second,
MinTimeout: 10 * time.Second,
NotFoundChecks: 300,
}
pendingResult, err := stateConf.WaitForState()
if err != nil {
return datatypes.Network_Storage{}, err
}
var result, ok = pendingResult.(datatypes.Network_Storage)
if ok {
return result, nil
}
return datatypes.Network_Storage{},
fmt.Errorf("[ERROR] Cannot find Storage with order id '%d'", orderId)
}
// Waits for storage provisioning
func WaitForStorageAvailable(d *schema.ResourceData, meta interface{}) (interface{}, error) {
log.Printf("Waiting for storage (%s) to be available.", d.Id())
id, err := strconv.Atoi(d.Id())
if err != nil {
return nil, fmt.Errorf("[ERROR] The storage ID %s must be numeric", d.Id())
}
sess := meta.(conns.ClientSession).SoftLayerSession()
stateConf := &resource.StateChangeConf{
Pending: []string{"retry", "provisioning"},
Target: []string{"available"},
Refresh: func() (interface{}, string, error) {
// Check active transactions
service := services.GetNetworkStorageService(sess)
result, err := service.Id(id).Mask("activeTransactionCount").GetObject()
if err != nil {
if apiErr, ok := err.(sl.Error); ok && apiErr.StatusCode == 404 {
return nil, "", fmt.Errorf("[ERROR] Error retrieving storage: %s", err)
}
return false, "retry", nil
}
log.Println("Checking active transactions.")
if *result.ActiveTransactionCount > 0 {
return result, "provisioning", nil
}
// Check volume status.
log.Println("Checking volume status.")
resultStr := ""
err = sess.DoRequest(
"SoftLayer_Network_Storage",
"getObject",
nil,
&sl.Options{Id: &id, Mask: "volumeStatus"},
&resultStr,
)
if err != nil {
return false, "retry", nil
}
if !strings.Contains(resultStr, "PROVISION_COMPLETED") &&
!strings.Contains(resultStr, "Volume Provisioning has completed") {
return result, "provisioning", nil
}
return result, "available", nil
},
Timeout: d.Timeout(schema.TimeoutCreate),
Delay: 10 * time.Second,
MinTimeout: 10 * time.Second,
}
return stateConf.WaitForState()
}
func getIops(storage datatypes.Network_Storage, storageType string) (float64, error) {
switch storageType {
case enduranceType:
for _, property := range storage.Properties {
if *property.Type.Keyname == "PROVISIONED_IOPS" {
provisionedIops, err := strconv.Atoi(*property.Value)
if err != nil {
return 0, err
}
enduranceIops := float64(provisionedIops / *storage.CapacityGb)
if enduranceIops < 1 {
enduranceIops = 0.25
}
return enduranceIops, nil
}
}
case performanceType:
if storage.Iops == nil {
return 0, fmt.Errorf("[ERROR] Failed to retrieve iops information")
}
iops, err := strconv.Atoi(*storage.Iops)
if err != nil {
return 0, err
}
return float64(iops), nil
}
return 0, fmt.Errorf("[ERROR] Invalid storage type %s", storageType)
}
func updateAllowedIpAddresses(d *schema.ResourceData, sess *session.Session, storage datatypes.Network_Storage) error {
id := *storage.Id
newIps := d.Get("allowed_ip_addresses").(*schema.Set).List()
// Add new allowed_ip_addresses
for _, newIp := range newIps {
isNewIp := true
for _, oldAllowedIpAddresses := range storage.AllowedIpAddresses {
if newIp.(string) == *oldAllowedIpAddresses.IpAddress {
isNewIp = false
break
}
}
if isNewIp {
ipObject, err := services.GetAccountService(sess).
Filter(filter.Build(
filter.Path("ipAddresses.ipAddress").
Eq(newIp.(string)))).GetIpAddresses()
if err != nil {
return err
}
if len(ipObject) != 1 {
return fmt.Errorf("[ERROR] Number of IP address is %d", len(ipObject))
}
for {
_, err = services.GetNetworkStorageService(sess).
Id(id).
AllowAccessFromHostList([]datatypes.Container_Network_Storage_Host{
{
Id: ipObject[0].Id,
ObjectType: sl.String("SoftLayer_Network_Subnet_IpAddress"),
},
})
if err != nil {
if strings.Contains(err.Error(), "SoftLayer_Exception_Network_Storage_Group_MassAccessControlModification") {
time.Sleep(retryTime * time.Second)
continue
}
return err
}
break
}
}
}
// Remove deleted allowed_hardware_ids
for _, oldAllowedIpAddresses := range storage.AllowedIpAddresses {
isDeletedId := true
for _, newIp := range newIps {
if newIp.(string) == *oldAllowedIpAddresses.IpAddress {
isDeletedId = false
break
}
}
if isDeletedId {
for {
_, err := services.GetNetworkStorageService(sess).
Id(id).
RemoveAccessFromHostList([]datatypes.Container_Network_Storage_Host{
{
Id: oldAllowedIpAddresses.Id,
ObjectType: sl.String("SoftLayer_Network_Subnet_IpAddress"),
},
})
if err != nil {
if strings.Contains(err.Error(), "SoftLayer_Exception_Network_Storage_Group_MassAccessControlModification") {
time.Sleep(retryTime * time.Second)
continue
}
return err
}
break
}
}
}
return nil
}
func updateAllowedSubnets(d *schema.ResourceData, sess *session.Session, storage datatypes.Network_Storage) error {
id := *storage.Id
newSubnets := d.Get("allowed_subnets").(*schema.Set).List()
// Add new allowed_subnets
for _, newSubnet := range newSubnets {
isNewSubnet := true
newSubnetArr := strings.Split(newSubnet.(string), "/")
newNetworkIdentifier := newSubnetArr[0]
newCidr, err := strconv.Atoi(newSubnetArr[1])
if err != nil {
return err
}
for _, oldAllowedSubnets := range storage.AllowedSubnets {
if newNetworkIdentifier == *oldAllowedSubnets.NetworkIdentifier && newCidr == *oldAllowedSubnets.Cidr {
isNewSubnet = false
break
}
}
if isNewSubnet {
filterStr := fmt.Sprintf("{\"subnets\":{\"networkIdentifier\":{\"operation\":\"%s\"},\"cidr\":{\"operation\":\"%d\"}}}", newNetworkIdentifier, newCidr)
subnetObject, err := services.GetAccountService(sess).
Filter(filterStr).GetSubnets()
if err != nil {
return err
}
if len(subnetObject) != 1 {
return fmt.Errorf("[ERROR] Number of subnet is %d", len(subnetObject))
}
_, err = services.GetNetworkStorageService(sess).
Id(id).
AllowAccessFromHostList([]datatypes.Container_Network_Storage_Host{
{
Id: subnetObject[0].Id,
ObjectType: sl.String("SoftLayer_Network_Subnet"),
},
})
if err != nil {
return err
}
}
}
// Remove deleted allowed_subnets
for _, oldAllowedSubnets := range storage.AllowedSubnets {
isDeletedSubnet := true
for _, newSubnet := range newSubnets {
newSubnetArr := strings.Split(newSubnet.(string), "/")
newNetworkIdentifier := newSubnetArr[0]
newCidr, err := strconv.Atoi(newSubnetArr[1])
if err != nil {
return err
}
if newNetworkIdentifier == *oldAllowedSubnets.NetworkIdentifier && newCidr == *oldAllowedSubnets.Cidr {
isDeletedSubnet = false
break
}
}
if isDeletedSubnet {
_, err := services.GetNetworkStorageService(sess).
Id(id).
RemoveAccessFromHostList([]datatypes.Container_Network_Storage_Host{
{
Id: sl.Int(*oldAllowedSubnets.Id),
ObjectType: sl.String("SoftLayer_Network_Subnet"),
},
})
if err != nil {
return err
}
}
}
return nil
}
func updateAllowedVirtualGuestIds(d *schema.ResourceData, sess *session.Session, storage datatypes.Network_Storage) error {
id := *storage.Id
newIds := d.Get("allowed_virtual_guest_ids").(*schema.Set).List()
// Add new allowed_virtual_guest_ids
for _, newId := range newIds {
isNewId := true
for _, oldAllowedVirtualGuest := range storage.AllowedVirtualGuests {
if newId.(int) == *oldAllowedVirtualGuest.Id {
isNewId = false
break
}
}