Getting started with 1Password for your growing team, or refining your setup? Our Secured Success quickstart guide is for you.
Forum Discussion
Former Member
3 years ago"Network: (failed to request.DoUnencrypted)" error when signing in
Hi
I'm facing a problem to run 1password CLI on AWS Lambda function.
We have a custom container image based on AWS "lambda/nodejs:16" this is my DOCKERFILE
`
FROM alpine as download
RUN...
Former Member
3 years agoI found the solution to the problem and part that was wrong in the code. Below is the applied solution.
execSync(
`echo -n '${password}' | op account add --address ${subdomain} --email ${email} --secret-key ${secretKey} --signin --raw`,
{
env: {
...process.env,
},
},
)
You can close