Why this matters
LGPD restricts cross-border transfers; technical controls prevent unlawful disclosures.
Before sending PII to processors, verify the destination region is approved (e.g., BR/EEA with SCC/DPA). Block requests that include personal data and target non-approved regions.
LGPD restricts cross-border transfers; technical controls prevent unlawful disclosures.
Side-by-side examples engineers can pattern-match during review.
sendTo("us-east-1", payloadWithCPF)if (containsPII(data) && !isRegionAllowed(dest)) throw new Error("LGPD transfer blocked");\nsendTo(dest, minimize(data));if(containsPII(d)&&!isRegionAllowed(r)) throw Error()sendTo(region, data)From the same buckets as this rule.