-
Notifications
You must be signed in to change notification settings - Fork 348
Open
Labels
Description
According to the documentation here, I should be able to do the following
credential_process = "C:\Path\To\credentials.cmd" parameterWithoutSpaces "parameter with spaces"
However, when I am using the following, it does not work:
[default]
credential_process = "C:\Program Files\aws_signing_helper\aws_signing_helper.exe" <params>
Using Process Monitor, we can see that the arguments are not being passed into the process. To reproduce this, set up the following dummy ~/.aws/config
:
[default]
credential_process = "C:\Program Files\aws_signing_helper\aws_signing_helper.exe" test
Open up Process Monitor, filter by Process Name contains aws_signing_helper
and Operation contains Process Start
, then run docker pull
, you should see the following:
Modify the ~/.aws/config
to contain this:
[default]
credential_process = aws_signing_helper test
Make sure aws_signing_helper
is in PATH
, of course. Run docker pull
again and you should see the following
Relevant info:
aws_signing_helper
version: 1.1.1