@p0security/cli 0.6.1 → 0.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -291,6 +291,9 @@ const createProxyCommands = (data, args, debug) => {
291
291
  scp: [
292
292
  "scp",
293
293
  ...(debug ? ["-v"] : []),
294
+ // ignore any overrides in the user's config file, we only want to use the ssh-agent we've set up for the session
295
+ "-o",
296
+ "IdentityAgent=$SSH_AUTH_SOCK",
294
297
  "-o",
295
298
  `ProxyCommand='${ssmCommand.join(" ")}'`,
296
299
  // if a response is not received after three 5 minute attempts,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@p0security/cli",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "Execute infra CLI commands with P0 grants",
5
5
  "main": "index.ts",
6
6
  "repository": {