-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathresource_datadog_sensitive_data_scanner_rule.go
471 lines (409 loc) · 18.1 KB
/
resource_datadog_sensitive_data_scanner_rule.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
package datadog
import (
"context"
"github.com/DataDog/datadog-api-client-go/v2/api/datadogV2"
"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"
"github.com/terraform-providers/terraform-provider-datadog/datadog/internal/utils"
"github.com/terraform-providers/terraform-provider-datadog/datadog/internal/validators"
)
func resourceDatadogSensitiveDataScannerRule() *schema.Resource {
return &schema.Resource{
Description: "Provides a Datadog SensitiveDataScannerRule resource. This can be used to create and manage Datadog sensitive_data_scanner_rule. Setting the `create_before_destroy` lifecycle Meta-argument to `true` is highly recommended if modifying the `included_keyword_configuration` field to avoid unexpectedly disabling Sensitive Data Scanner groups.",
ReadContext: resourceDatadogSensitiveDataScannerRuleRead,
CreateContext: resourceDatadogSensitiveDataScannerRuleCreate,
UpdateContext: resourceDatadogSensitiveDataScannerRuleUpdate,
DeleteContext: resourceDatadogSensitiveDataScannerRuleDelete,
Importer: &schema.ResourceImporter{
StateContext: schema.ImportStatePassthroughContext,
},
SchemaFunc: func() map[string]*schema.Schema {
return map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Optional: true,
Description: "Name of the rule.",
},
"description": {
Type: schema.TypeString,
Optional: true,
Description: "Description of the rule.",
},
"group_id": {
Type: schema.TypeString,
Required: true,
ForceNew: true,
Description: "Id of the scanning group the rule belongs to.",
},
"standard_pattern_id": {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Description: "Id of the standard pattern the rule refers to. If provided, then pattern must not be provided.",
},
"excluded_namespaces": {
Type: schema.TypeList,
Optional: true,
Description: "Attributes excluded from the scan. If namespaces is provided, it has to be a sub-path of the namespaces array.",
Elem: &schema.Schema{Type: schema.TypeString},
},
"namespaces": {
Type: schema.TypeList,
Optional: true,
Description: "Attributes included in the scan. If namespaces is empty or missing, all attributes except excluded_namespaces are scanned. If both are missing the whole event is scanned.",
Elem: &schema.Schema{Type: schema.TypeString},
},
"is_enabled": {
Type: schema.TypeBool,
Optional: true,
Description: "Whether or not the rule is enabled.",
},
"pattern": {
Type: schema.TypeString,
Optional: true,
Description: "Not included if there is a relationship to a standard pattern.",
},
"tags": {
Type: schema.TypeList,
Optional: true,
Description: "List of tags.",
Elem: &schema.Schema{Type: schema.TypeString},
},
"included_keyword_configuration": {
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
ForceNew: true, // If the attribute is removed, we need to recreate the rule.
Description: "Object defining a set of keywords and a number of characters that help reduce noise. You can provide a list of keywords you would like to check within a defined proximity of the matching pattern. If any of the keywords are found within the proximity check then the match is kept. If none are found, the match is discarded. If the rule has the `standard_pattern_id` field, then discarding this field will apply the recommended keywords. Setting the `create_before_destroy` lifecycle Meta-argument to `true` is highly recommended if modifying this field to avoid unexpectedly disabling Sensitive Data Scanner groups.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"keywords": {
Type: schema.TypeList,
Required: true,
Description: "Keyword list that is checked during scanning in order to validate a match. The number of keywords in the list must be lower than or equal to 30.",
MaxItems: 30,
Elem: &schema.Schema{Type: schema.TypeString},
},
"character_count": {
Type: schema.TypeInt,
Required: true,
Description: "Number of characters before the match to find a keyword validating the match. It must be between 1 and 50 (inclusive).",
},
},
},
},
"text_replacement": {
Type: schema.TypeList,
Optional: true,
MaxItems: 1,
Description: "Object describing how the scanned event will be replaced. Defaults to `type: none`",
DiffSuppressFunc: func(_, _, _ string, d *schema.ResourceData) bool {
old, new := d.GetChange("text_replacement.0.type")
oldS := old.(string)
newS := new.(string)
if (oldS == "" && newS == "none") || (oldS == "none" && newS == "") || (oldS == "none" && newS == "none") {
return true
}
return false
},
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"number_of_chars": {
Type: schema.TypeInt,
Optional: true,
Description: "Required if type == 'partial_replacement_from_beginning' or 'partial_replacement_from_end'. It must be > 0.",
},
"replacement_string": {
Type: schema.TypeString,
Optional: true,
Description: "Required if type == 'replacement_string'.",
},
"type": {
Type: schema.TypeString,
Required: true,
Description: "Type of the replacement text. None means no replacement. hash means the data will be stubbed. replacement_string means that one can chose a text to replace the data. partial_replacement_from_beginning allows a user to partially replace the data from the beginning, and partial_replacement_from_end on the other hand, allows to replace data from the end.",
ValidateDiagFunc: validators.ValidateEnumValue(datadogV2.NewSensitiveDataScannerTextReplacementTypeFromValue),
},
},
},
},
"priority": {
Type: schema.TypeInt,
Optional: true,
Computed: true,
Description: "Priority level of the rule (optional). Used to order sensitive data discovered in the sds summary page. It must be between 1 and 5 (1 being the most important).",
ValidateFunc: validation.IntBetween(1, 5),
},
}
},
}
}
func resourceDatadogSensitiveDataScannerRuleRead(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
resp, httpResp, err := apiInstances.GetSensitiveDataScannerApiV2().ListScanningGroups(auth)
if err != nil {
if httpResp != nil && httpResp.StatusCode == 404 {
// Delete the resource from the local state since it doesn't exist anymore in the actual state
d.SetId("")
return nil
}
return utils.TranslateClientErrorDiag(err, httpResp, "error calling ListScanningGroups")
}
if err := utils.CheckForUnparsed(resp); err != nil {
return diag.FromErr(err)
}
ruleId := d.Id()
if ruleFound := findSensitiveDataScannerRuleHelper(ruleId, resp); ruleFound != nil {
if err := d.Set("group_id", *ruleFound.Relationships.Group.Data.Id); err != nil {
return diag.FromErr(err)
}
if standardPattern, ok := ruleFound.Relationships.GetStandardPatternOk(); ok {
if standardPattern.Data.Id != nil {
if err := d.Set("standard_pattern_id", *standardPattern.Data.Id); err != nil {
return diag.FromErr(err)
}
}
}
return updateSensitiveDataScannerRuleState(d, ruleFound.Attributes)
}
return nil
}
func resourceDatadogSensitiveDataScannerRuleCreate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
sensitiveDataScannerMutex.Lock()
defer sensitiveDataScannerMutex.Unlock()
attributes := buildSensitiveDataScannerRuleAttributes(d)
req := datadogV2.NewSensitiveDataScannerRuleCreateRequestWithDefaults()
req.Data = *datadogV2.NewSensitiveDataScannerRuleCreateWithDefaults()
relationships := datadogV2.NewSensitiveDataScannerRuleRelationshipsWithDefaults()
groupData := datadogV2.NewSensitiveDataScannerGroupDataWithDefaults()
if groupId, ok := d.GetOk("group_id"); ok {
groupRelationship := datadogV2.NewSensitiveDataScannerGroup()
groupRelationship.SetId(groupId.(string))
groupData.SetData(*groupRelationship)
relationships.SetGroup(*groupData)
}
spData := datadogV2.NewSensitiveDataScannerStandardPatternData()
if spId, ok := d.GetOk("standard_pattern_id"); ok {
spRelationship := datadogV2.NewSensitiveDataScannerStandardPattern()
spRelationship.SetId(spId.(string))
spData.SetData(*spRelationship)
relationships.SetStandardPattern(*spData)
}
req.Data.SetAttributes(*attributes)
req.Data.SetRelationships(*relationships)
resp, httpResp, err := apiInstances.GetSensitiveDataScannerApiV2().CreateScanningRule(auth, *req)
if err != nil {
return utils.TranslateClientErrorDiag(err, httpResp, "error creating SensitiveDataScannerRule")
}
if err := utils.CheckForUnparsed(resp); err != nil {
return diag.FromErr(err)
}
d.SetId(resp.Data.GetId())
if err := d.Set("group_id", *resp.Data.Relationships.Group.Data.Id); err != nil {
return diag.FromErr(err)
}
if standardPattern, ok := resp.GetData().Relationships.GetStandardPatternOk(); ok {
if standardPattern.Data.Id != nil {
if err := d.Set("standard_pattern_id", *standardPattern.Data.Id); err != nil {
return diag.FromErr(err)
}
}
}
return updateSensitiveDataScannerRuleState(d, resp.Data.Attributes)
}
func buildSensitiveDataScannerRuleAttributes(d *schema.ResourceData) *datadogV2.SensitiveDataScannerRuleAttributes {
attributes := datadogV2.NewSensitiveDataScannerRuleAttributesWithDefaults()
if description, ok := d.GetOk("description"); ok {
attributes.SetDescription(description.(string))
}
namespaces := []string{}
for _, s := range d.Get("namespaces").([]interface{}) {
namespaces = append(namespaces, s.(string))
}
attributes.SetNamespaces(namespaces)
excludedNamespaces := []string{}
for _, s := range d.Get("excluded_namespaces").([]interface{}) {
if s == nil {
// sdkv2 treats empty strings in list as nils so
// append an empty string
excludedNamespaces = append(excludedNamespaces, "")
} else {
excludedNamespaces = append(excludedNamespaces, s.(string))
}
}
attributes.SetExcludedNamespaces(excludedNamespaces)
if isEnabled := d.Get("is_enabled"); isEnabled != nil {
attributes.SetIsEnabled(isEnabled.(bool))
}
if name, ok := d.GetOk("name"); ok {
attributes.SetName(name.(string))
}
if pattern, ok := d.GetOk("pattern"); ok {
attributes.SetPattern(pattern.(string))
}
tags := []string{}
for _, s := range d.Get("tags").([]interface{}) {
tags = append(tags, s.(string))
}
attributes.SetTags(tags)
var textReplacement datadogV2.SensitiveDataScannerTextReplacement
if _, ok := d.GetOk("text_replacement"); ok {
if numberOfChars, ok := d.GetOk("text_replacement.0.number_of_chars"); ok {
textReplacement.SetNumberOfChars(int64(numberOfChars.(int)))
}
if replacementString, ok := d.GetOk("text_replacement.0.replacement_string"); ok {
textReplacement.SetReplacementString(replacementString.(string))
}
if typeVar, ok := d.GetOk("text_replacement.0.type"); ok {
typeVarItem, _ := datadogV2.NewSensitiveDataScannerTextReplacementTypeFromValue(typeVar.(string))
textReplacement.SetType(*typeVarItem)
}
} else {
textReplacement.Type = datadogV2.SENSITIVEDATASCANNERTEXTREPLACEMENTTYPE_NONE.Ptr()
}
attributes.SetTextReplacement(textReplacement)
var includedKeywordConfiguration datadogV2.SensitiveDataScannerIncludedKeywordConfiguration
_, hasSp := d.GetOk("standard_pattern_id")
if _, ok := d.GetOk("included_keyword_configuration"); ok {
// The user is creating a rule with an included keyword configuration specified. Let's simply build that object
keywords := []string{}
for _, kw := range d.Get("included_keyword_configuration.0.keywords").([]interface{}) {
keywords = append(keywords, kw.(string))
}
includedKeywordConfiguration.SetKeywords(keywords)
if characterCount, ok := d.GetOk("included_keyword_configuration.0.character_count"); ok {
includedKeywordConfiguration.SetCharacterCount(int64(characterCount.(int)))
}
if hasSp {
// If the user creates a rule derived from a standard rule, let's add that the rule is not using the recommended keywords.
includedKeywordConfiguration.SetUseRecommendedKeywords(false)
}
attributes.SetIncludedKeywordConfiguration(includedKeywordConfiguration)
} else if hasSp {
// The user is creating / updating a rule derived from a standard rule, without specifying an included keyword configuration.
// Let's use the recommended keywords here by default.
keywords := make([]string, 0)
includedKeywordConfiguration.SetKeywords(keywords)
includedKeywordConfiguration.SetCharacterCount(int64(30))
includedKeywordConfiguration.SetUseRecommendedKeywords(true)
attributes.SetIncludedKeywordConfiguration(includedKeywordConfiguration)
}
if priority, ok := d.GetOk("priority"); ok {
attributes.SetPriority(int64(priority.(int)))
}
return attributes
}
func resourceDatadogSensitiveDataScannerRuleUpdate(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
sensitiveDataScannerMutex.Lock()
defer sensitiveDataScannerMutex.Unlock()
id := d.Id()
attributes := buildSensitiveDataScannerRuleAttributes(d)
req := datadogV2.NewSensitiveDataScannerRuleUpdateRequestWithDefaults()
req.Data = *datadogV2.NewSensitiveDataScannerRuleUpdateWithDefaults()
req.Data.SetAttributes(*attributes)
req.Data.SetId(id)
resp, httpResp, err := apiInstances.GetSensitiveDataScannerApiV2().UpdateScanningRule(auth, id, *req)
if err != nil {
return utils.TranslateClientErrorDiag(err, httpResp, "error updating SensitiveDataScannerRule")
}
if err := utils.CheckForUnparsed(resp); err != nil {
return diag.FromErr(err)
}
d.SetId(id)
return updateSensitiveDataScannerRuleState(d, req.Data.Attributes)
}
func resourceDatadogSensitiveDataScannerRuleDelete(ctx context.Context, d *schema.ResourceData, meta interface{}) diag.Diagnostics {
providerConf := meta.(*ProviderConfiguration)
apiInstances := providerConf.DatadogApiInstances
auth := providerConf.Auth
sensitiveDataScannerMutex.Lock()
defer sensitiveDataScannerMutex.Unlock()
id := d.Id()
body := datadogV2.NewSensitiveDataScannerRuleDeleteRequestWithDefaults()
_, httpResp, err := apiInstances.GetSensitiveDataScannerApiV2().DeleteScanningRule(auth, id, *body)
if err != nil {
// The resource is assumed to still exist, and all prior state is preserved.
return utils.TranslateClientErrorDiag(err, httpResp, "error deleting SensitiveDataScannerRule")
}
return nil
}
func updateSensitiveDataScannerRuleState(d *schema.ResourceData, ruleAttributes *datadogV2.SensitiveDataScannerRuleAttributes) diag.Diagnostics {
if err := d.Set("name", ruleAttributes.GetName()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("description", ruleAttributes.GetDescription()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("is_enabled", ruleAttributes.GetIsEnabled()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("excluded_namespaces", ruleAttributes.GetExcludedNamespaces()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("namespaces", ruleAttributes.GetNamespaces()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("pattern", ruleAttributes.GetPattern()); err != nil {
return diag.FromErr(err)
}
if err := d.Set("tags", ruleAttributes.GetTags()); err != nil {
return diag.FromErr(err)
}
if tR, ok := ruleAttributes.GetTextReplacementOk(); ok && tR != nil {
textReplacement := make(map[string]interface{})
textReplacementList := make([]map[string]interface{}, 0, 1)
if numberOfChars, ok := tR.GetNumberOfCharsOk(); ok {
textReplacement["number_of_chars"] = numberOfChars
}
if replacementString, ok := tR.GetReplacementStringOk(); ok {
textReplacement["replacement_string"] = replacementString
}
if replacementType, ok := tR.GetTypeOk(); ok {
textReplacement["type"] = *replacementType
}
textReplacementList = append(textReplacementList, textReplacement)
if err := d.Set("text_replacement", textReplacementList); err != nil {
return diag.FromErr(err)
}
}
if incKw, ok := ruleAttributes.GetIncludedKeywordConfigurationOk(); ok && incKw != nil {
if _, hasSp := d.GetOk("standard_pattern_id"); hasSp && incKw.GetUseRecommendedKeywords() {
// This situation occurs when the rule is derived from a standard pattern, and that uses the recommended keywords.
// In that case, we shouldn't do anything because it means the user has chosen the default option.
} else {
includedKeywordConfig := make(map[string]interface{})
includedKeywordConfigList := make([]map[string]interface{}, 0, 1)
if keywords, ok := incKw.GetKeywordsOk(); ok {
includedKeywordConfig["keywords"] = keywords
}
if characterCount, ok := incKw.GetCharacterCountOk(); ok {
includedKeywordConfig["character_count"] = characterCount
}
includedKeywordConfigList = append(includedKeywordConfigList, includedKeywordConfig)
if err := d.Set("included_keyword_configuration", includedKeywordConfigList); err != nil {
return diag.FromErr(err)
}
}
}
if err := d.Set("priority", ruleAttributes.GetPriority()); err != nil {
return diag.FromErr(err)
}
return nil
}
func findSensitiveDataScannerRuleHelper(ruleId string, response datadogV2.SensitiveDataScannerGetConfigResponse) *datadogV2.SensitiveDataScannerRuleIncludedItem {
for _, resource := range response.GetIncluded() {
if resource.SensitiveDataScannerRuleIncludedItem.GetId() == ruleId {
return resource.SensitiveDataScannerRuleIncludedItem
}
}
return nil
}