Allow disabling URL redaction #325
Replies: 1 comment
-
I ran into this issue as well. It looks like a misconfiguration with the trufflehog config, which is set to this:
and then the importer runs the
so my solution was to wait for the actions-importer container to start, exec in and move trufflehog out of the
This is a pretty janky workaround, but it got the job done for me, and because it modifies the running container without committing any changes, it won't have any effect on subsequent runs. It would be nice if
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Currently, the importer tool from Azure DevOps is redacting URLs that it doesn't need to:
https://api-test.example.com
becameREDACTED-test.example.com
,https://dev.azure.com/<organization name part 1>-<organization name part 2>-<organization name part 3>
becameREDACTED-<organization name part 2>-<organization name part 3>
)https://go.microsoft.com/fwlink/
(e.g.https://go.microsoft.com/fwlink/?linkid=2215160
becameREDACTED?linkid=2215160
)https://spsprodcus
(e.g.https://spsprodcus5.vssps.visualstudio.com
becameREDACTED5.vssps.visualstudio.com
)gh actions-importer list-features
doesn't list this as something that can be disabled or configured. It would be helpful if the importer could be stopped from mangling these (non-secret!) strings?Beta Was this translation helpful? Give feedback.
All reactions