I've been developing a handful of azure functions and have came across an issue with the way azure functions is handling sensitive data. e.g. passport numbers
My function takes this data and sends it to a reglatory body for approval.
This works fine locally, however, when depolyed it seems that azure functions is altering the variable this is stored in and the request fails.
I 100% want to avoid outputing personal information into logs so it makes it difficult to debug. Due to it working locally, I'm confident that the problem lies within how Azure Functions is handing such things.