-
Notifications
You must be signed in to change notification settings - Fork 4
/
sample_dlp_deid_config.json
50 lines (50 loc) · 1.31 KB
/
sample_dlp_deid_config.json
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
{
"deidentifyTemplate" : {
"displayName" : "Email Id and Phone number masker",
"description":"De-identifies emails and phone numbers with unwrapped key.",
"deidentifyConfig": {
"infoTypeTransformations": {
"transformations": [
{
"infoTypes": [
{
"name": "EMAIL_ADDRESS"
}
],
"primitiveTransformation": {
"cryptoDeterministicConfig": {
"cryptoKey": {
"unwrapped": {
"key": "VWtYcDJzNXY4eS9CP0UoSCtNYlFlU2hWbVlxM3Q2dzk="
}
},
"surrogateInfoType": {
"name": "BQ_TRF_EMAIL"
}
}
}
},
{
"infoTypes": [
{
"name": "PHONE_NUMBER"
}
],
"primitiveTransformation": {
"cryptoDeterministicConfig": {
"cryptoKey": {
"unwrapped": {
"key": "VWtYcDJzNXY4eS9CP0UoSCtNYlFlU2hWbVlxM3Q2dzk="
}
},
"surrogateInfoType": {
"name": "BQ_TRF_PH"
}
}
}
}
]
}
}
}
}