Hi,
In my plugin I have added following code to avoid logging secrets
`packer.LogSecretFilter.Set(secretResp)`
just before executing the remote command. Secret is part of the remote command argument.
Unfortunately, it is still getting logged.
Output -
2019/08/02 11:27:22 packer.exe: 2019/08/02 11:27:22 [INFO] command 'powershell.exe -executionpolicy bypass -file C:\Users\Public\Documents\test.ps1 -CertU Base64Secret
Expected
2019/08/02 11:27:22 packer.exe: 2019/08/02 11:27:22 [INFO] command 'powershell.exe -executionpolicy bypass -file C:\Users\Public\Documents\test.ps1 -CertU <Sensitive>
Thanks
Udbhav