We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac6682 commit ff5a7bbCopy full SHA for ff5a7bb
tutorials/8-3-global-data-masking.tf
@@ -15,18 +15,21 @@ resource "bytebase_policy" "global_masking_policy" {
15
condition = "column_name == \"birth_date\""
16
id = "birth-date-mask"
17
semantic_type = "date-year-mask"
18
+ title = "Mask Birth Date Year"
19
}
20
21
rules {
22
condition = "column_name == \"last_name\""
23
id = "last-name-first-letter-only"
24
semantic_type = "name-first-letter-only"
25
+ title = "Last Name Only Show First Letter"
26
27
28
29
condition = "classification_level in [\"2\"]"
30
id = "classification-level-2"
31
semantic_type = "full-mask"
32
+ title = "Full Mask for Classification Level 2"
33
34
35
0 commit comments