-
Notifications
You must be signed in to change notification settings - Fork 669
/
resource_ibm_is_backup_policy.go
455 lines (419 loc) · 16.6 KB
/
resource_ibm_is_backup_policy.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
// Copyright IBM Corp. 2021 All Rights Reserved.
// Licensed under the Mozilla Public License v2.0
package vpc
import (
"context"
"fmt"
"log"
"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/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/IBM/go-sdk-core/v5/core"
"github.com/IBM/vpc-go-sdk/vpcv1"
)
func ResourceIBMIsBackupPolicy() *schema.Resource {
return &schema.Resource{
CreateContext: resourceIBMIsBackupPolicyCreate,
ReadContext: resourceIBMIsBackupPolicyRead,
UpdateContext: resourceIBMIsBackupPolicyUpdate,
DeleteContext: resourceIBMIsBackupPolicyDelete,
Importer: &schema.ResourceImporter{},
Schema: map[string]*schema.Schema{
"match_resource_types": &schema.Schema{
Type: schema.TypeSet,
Optional: true,
Computed: true,
Set: schema.HashString,
Deprecated: "match_resource_types is being deprecated. Use match_resource_type instead",
Description: "A resource type this backup policy applies to. Resources that have both a matching type and a matching user tag will be subject to the backup policy.",
ConflictsWith: []string{"match_resource_type"},
Elem: &schema.Schema{Type: schema.TypeString},
},
"match_resource_type": {
Type: schema.TypeString,
Optional: true,
Default: "volume",
ForceNew: true,
ConflictsWith: []string{"match_resource_types"},
ValidateFunc: validate.InvokeValidator("ibm_is_backup_policy", "match_resource_type"),
Description: "A resource type this backup policy applies to. Resources that have both a matching type and a matching user tag will be subject to the backup policy.",
},
"match_user_tags": &schema.Schema{
Type: schema.TypeSet,
Required: true,
Description: "The user tags this backup policy applies to. Resources that have both a matching user tag and a matching type will be subject to the backup policy.",
Elem: &schema.Schema{Type: schema.TypeString},
Set: schema.HashString,
},
"included_content": &schema.Schema{
Type: schema.TypeSet,
Optional: true,
Computed: true,
Set: schema.HashString,
Description: "The included content for backups created using this policy",
Elem: &schema.Schema{Type: schema.TypeString, ValidateFunc: validate.InvokeValidator("ibm_is_backup_policy", "included_content")},
},
"name": &schema.Schema{
Type: schema.TypeString,
Required: true,
ValidateFunc: validate.InvokeValidator("ibm_is_backup_policy", "name"),
Description: "The user-defined name for this backup policy. Names must be unique within the region this backup policy resides in. If unspecified, the name will be a hyphenated list of randomly-selected words.",
},
"resource_group": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
Description: "The unique identifier of the resource group to use. If unspecified, the account's [default resourcegroup](https://cloud.ibm.com/apidocs/resource-manager#introduction) is used.",
},
"created_at": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The date and time that the backup policy was created.",
},
"crn": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The CRN for this backup policy.",
},
"href": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The URL for this backup policy.",
},
"last_job_completed_at": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The date and time that the most recent job for this backup policy completed.",
},
"lifecycle_state": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The lifecycle state of the backup policy.",
},
"resource_type": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The resource type.",
},
"version": &schema.Schema{
Type: schema.TypeString,
Computed: true,
},
"health_reasons": {
Type: schema.TypeList,
Computed: true,
Description: "The reasons for the current health_state (if any).",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"code": {
Type: schema.TypeString,
Computed: true,
Description: "A snake case string succinctly identifying the reason for this health state.",
},
"message": {
Type: schema.TypeString,
Computed: true,
Description: "An explanation of the reason for this health state.",
},
"more_info": {
Type: schema.TypeString,
Computed: true,
Description: "Link to documentation about the reason for this health state.",
},
},
},
},
"health_state": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The health of this resource",
},
"scope": &schema.Schema{
Type: schema.TypeList,
Computed: true,
Optional: true,
MaxItems: 1,
Description: "The scope for this backup policy.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"crn": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Description: "The CRN for this enterprise.",
},
"id": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The unique identifier for this enterprise or account.",
},
"resource_type": &schema.Schema{
Type: schema.TypeString,
Computed: true,
Description: "The resource type.",
},
},
},
},
},
}
}
func ResourceIBMIsBackupPolicyValidator() *validate.ResourceValidator {
validateSchema := make([]validate.ValidateSchema, 0)
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: "name",
ValidateFunctionIdentifier: validate.ValidateRegexpLen,
Type: validate.TypeString,
Optional: true,
Regexp: `^([a-z]|[a-z][-a-z0-9]*[a-z0-9]|[0-9][-a-z0-9]*([a-z]|[-a-z][-a-z0-9]*[a-z0-9]))$`,
MinValueLength: 1,
MaxValueLength: 63,
},
)
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: "match_user_tags",
ValidateFunctionIdentifier: validate.ValidateRegexpLen,
Type: validate.TypeString,
Optional: true,
Regexp: `^[A-Za-z0-9:_ .-]+$`,
MinValueLength: 1,
MaxValueLength: 128,
},
)
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: "included_content",
ValidateFunctionIdentifier: validate.ValidateAllowedStringValue,
Type: validate.TypeString,
Required: true,
AllowedValues: "boot_volume, data_volumes",
},
)
validateSchema = append(validateSchema,
validate.ValidateSchema{
Identifier: "match_resource_type",
ValidateFunctionIdentifier: validate.ValidateAllowedStringValue,
Type: validate.TypeString,
Required: true,
AllowedValues: "instance, volume",
},
)
resourceValidator := validate.ResourceValidator{ResourceName: "ibm_is_backup_policy", Schema: validateSchema}
return &resourceValidator
}
func resourceIBMIsBackupPolicyCreate(context context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
vpcClient, err := vpcClient(meta)
if err != nil {
return diag.FromErr(err)
}
createBackupPolicyOptions := &vpcv1.CreateBackupPolicyOptions{}
backupPolicyPrototype := &vpcv1.BackupPolicyPrototype{}
if matchResourceType, ok := d.GetOk("match_resource_type"); ok {
backupPolicyPrototype.MatchResourceType = core.StringPtr(matchResourceType.(string))
} else if matchResourceTypes, ok := d.GetOk("match_resource_types"); ok {
matchResourceTypeList := flex.ExpandStringList((matchResourceTypes.(*schema.Set)).List())
backupPolicyPrototype.MatchResourceType = core.StringPtr(matchResourceTypeList[0])
}
if _, ok := d.GetOk("included_content"); ok {
backupPolicyPrototype.IncludedContent = flex.ExpandStringList((d.Get("included_content").(*schema.Set)).List())
}
if _, ok := d.GetOk("match_user_tags"); ok {
backupPolicyPrototype.MatchUserTags = flex.ExpandStringList((d.Get("match_user_tags").(*schema.Set)).List())
}
if _, ok := d.GetOk("name"); ok {
backupPolicyPrototype.Name = core.StringPtr(d.Get("name").(string))
}
if resGroup, ok := d.GetOk("resource_group"); ok {
resourceGroupStr := resGroup.(string)
resourceGroup := vpcv1.ResourceGroupIdentity{
ID: &resourceGroupStr,
}
backupPolicyPrototype.ResourceGroup = &resourceGroup
}
if _, ok := d.GetOk("scope"); ok {
bkpPolicyScopePrototypeMap := d.Get("scope.0").(map[string]interface{})
bkpPolicyScopePrototype := vpcv1.BackupPolicyScopePrototype{}
if bkpPolicyScopePrototypeMap["crn"] != nil {
if crnStr := bkpPolicyScopePrototypeMap["crn"].(string); crnStr != "" {
bkpPolicyScopePrototype.CRN = core.StringPtr(crnStr)
}
}
backupPolicyPrototype.Scope = &bkpPolicyScopePrototype
}
createBackupPolicyOptions.SetBackupPolicyPrototype(backupPolicyPrototype)
backupPolicyIntf, response, err := vpcClient.CreateBackupPolicyWithContext(context, createBackupPolicyOptions)
if err != nil {
log.Printf("[DEBUG] CreateBackupPolicyWithContext failed %s\n%s", err, response)
return diag.FromErr(fmt.Errorf("[ERROR] CreateBackupPolicyWithContext failed %s\n%s", err, response))
}
backupPolicy := backupPolicyIntf.(*vpcv1.BackupPolicy)
d.SetId(*backupPolicy.ID)
return resourceIBMIsBackupPolicyRead(context, d, meta)
}
func resourceIBMIsBackupPolicyRead(context context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
vpcClient, err := vpcClient(meta)
if err != nil {
return diag.FromErr(err)
}
getBackupPolicyOptions := &vpcv1.GetBackupPolicyOptions{}
getBackupPolicyOptions.SetID(d.Id())
backupPolicyIntf, response, err := vpcClient.GetBackupPolicyWithContext(context, getBackupPolicyOptions)
if err != nil {
if response != nil && response.StatusCode == 404 {
d.SetId("")
return nil
}
log.Printf("[DEBUG] GetBackupPolicyWithContext failed %s\n%s", err, response)
return diag.FromErr(fmt.Errorf("[ERROR] GetBackupPolicyWithContext failed %s\n%s", err, response))
}
backupPolicy := backupPolicyIntf.(*vpcv1.BackupPolicy)
if backupPolicy.MatchResourceType != nil {
matchResourceTypes := *backupPolicy.MatchResourceType
matchResourceTypesList := []string{matchResourceTypes}
if err = d.Set("match_resource_types", matchResourceTypesList); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting match_resource_types: %s", err))
}
if err = d.Set("match_resource_type", backupPolicy.MatchResourceType); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting match_resource_type: %s", err))
}
}
if backupPolicy.IncludedContent != nil {
if err = d.Set("included_content", backupPolicy.IncludedContent); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting included_content: %s", err))
}
}
if backupPolicy.MatchUserTags != nil {
if err = d.Set("match_user_tags", backupPolicy.MatchUserTags); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting match_user_tags: %s", err))
}
}
if backupPolicy.Name != nil {
if err = d.Set("name", backupPolicy.Name); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting name: %s", err))
}
}
if backupPolicy.ResourceGroup != nil {
resourceGroupID := *backupPolicy.ResourceGroup.ID
if err = d.Set("resource_group", resourceGroupID); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting resource_group: %s", err))
}
}
if backupPolicy.CreatedAt != nil {
if err = d.Set("created_at", flex.DateTimeToString(backupPolicy.CreatedAt)); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting created_at: %s", err))
}
}
if backupPolicy.CRN != nil {
if err = d.Set("crn", backupPolicy.CRN); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting crn: %s", err))
}
}
if backupPolicy.Href != nil {
if err = d.Set("href", backupPolicy.Href); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting href: %s", err))
}
}
if backupPolicy.LastJobCompletedAt != nil {
if err = d.Set("last_job_completed_at", flex.DateTimeToString(backupPolicy.LastJobCompletedAt)); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting last_job_completed_at: %s", err))
}
}
if backupPolicy.LifecycleState != nil {
if err = d.Set("lifecycle_state", backupPolicy.LifecycleState); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting lifecycle_state: %s", err))
}
}
if backupPolicy.ResourceType != nil {
if err = d.Set("resource_type", backupPolicy.ResourceType); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting resource_type: %s", err))
}
}
if backupPolicy.HealthReasons != nil {
healthReasonsList := make([]map[string]interface{}, 0)
for _, sr := range backupPolicy.HealthReasons {
currentSR := map[string]interface{}{}
if sr.Code != nil && sr.Message != nil {
currentSR["code"] = *sr.Code
currentSR["message"] = *sr.Message
if sr.MoreInfo != nil {
currentSR["more_info"] = *sr.Message
}
healthReasonsList = append(healthReasonsList, currentSR)
}
}
d.Set("health_reasons", healthReasonsList)
}
if err = d.Set("health_state", backupPolicy.HealthState); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting health_state: %s", err))
}
if backupPolicy.Scope != nil {
scope := []map[string]interface{}{}
scopeMap := resourceIbmIsBackupPolicyScopeToMap(*backupPolicy.Scope.(*vpcv1.BackupPolicyScope))
scope = append(scope, scopeMap)
if err = d.Set("scope", scope); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting scope: %s", err))
}
}
if err = d.Set("version", response.Headers.Get("Etag")); err != nil {
return diag.FromErr(fmt.Errorf("[ERROR] Error setting version: %s", err))
}
return nil
}
func resourceIbmIsBackupPolicyScopeToMap(scope vpcv1.BackupPolicyScope) map[string]interface{} {
scopeMap := map[string]interface{}{}
scopeMap["crn"] = scope.CRN
scopeMap["id"] = scope.ID
scopeMap["resource_type"] = scope.ResourceType
return scopeMap
}
func resourceIBMIsBackupPolicyUpdate(context context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
vpcClient, err := vpcClient(meta)
if err != nil {
return diag.FromErr(err)
}
updateBackupPolicyOptions := &vpcv1.UpdateBackupPolicyOptions{}
updateBackupPolicyOptions.SetID(d.Id())
hasChange := false
patchVals := &vpcv1.BackupPolicyPatch{}
if d.HasChange("match_user_tags") {
patchVals.MatchUserTags = (flex.ExpandStringList((d.Get("match_user_tags").(*schema.Set)).List()))
hasChange = true
}
if d.HasChange("name") {
patchVals.Name = core.StringPtr(d.Get("name").(string))
hasChange = true
}
if d.HasChange("included_content") {
patchVals.IncludedContent = (flex.ExpandStringList((d.Get("included_content").(*schema.Set)).List()))
hasChange = true
}
updateBackupPolicyOptions.SetIfMatch(d.Get("version").(string))
if hasChange {
updateBackupPolicyOptions.BackupPolicyPatch, _ = patchVals.AsPatch()
_, response, err := vpcClient.UpdateBackupPolicyWithContext(context, updateBackupPolicyOptions)
if err != nil {
log.Printf("[DEBUG] UpdateBackupPolicyWithContext failed %s\n%s", err, response)
return diag.FromErr(fmt.Errorf("[ERROR] UpdateBackupPolicyWithContext failed %s\n%s", err, response))
}
}
return resourceIBMIsBackupPolicyRead(context, d, meta)
}
func resourceIBMIsBackupPolicyDelete(context context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
vpcClient, err := vpcClient(meta)
if err != nil {
return diag.FromErr(err)
}
deleteBackupPolicyOptions := &vpcv1.DeleteBackupPolicyOptions{}
deleteBackupPolicyOptions.SetID(d.Id())
deleteBackupPolicyOptions.SetIfMatch(d.Get("version").(string))
_, response, err := vpcClient.DeleteBackupPolicyWithContext(context, deleteBackupPolicyOptions)
if err != nil {
log.Printf("[DEBUG] DeleteBackupPolicyWithContext failed %s\n%s", err, response)
return diag.FromErr(fmt.Errorf("[ERROR] DeleteBackupPolicyWithContext failed %s\n%s", err, response))
}
d.SetId("")
return nil
}