-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpolicy.tool_access.yaml
More file actions
28 lines (27 loc) · 930 Bytes
/
policy.tool_access.yaml
File metadata and controls
28 lines (27 loc) · 930 Bytes
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
version: v1
defaults:
ingress:
action: redact # or deny | pass_through | tokenize
egress:
action: redact
tool_access:
verify_identity:
direction: ingress # only apply on precheck
allow_pii:
PII:email_address: pass_through # tool may receive raw email
PII:us_ssn: tokenize # tool must get token, not raw
send_marketing_email:
direction: ingress
allow_pii:
PII:email_address: pass_through
data_export:
direction: egress # only apply on postcheck
allow_pii:
PII:email_address: pass_through # allow email in export
PII:us_ssn: tokenize # tokenize SSN in export
audit_log:
direction: egress # only apply on postcheck
allow_pii:
PII:email_address: pass_through # allow email in audit logs
# SSN will be redacted (default behavior)
# default: everything else redacts/denies (your current behavior)