We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 891e413 commit 2fb25d7Copy full SHA for 2fb25d7
plugins/aws/sam.go
@@ -15,6 +15,11 @@ func AWSSAMCLI() schema.Executable {
15
NeedsAuth: needsauth.IfAll(
16
needsauth.NotForHelpOrVersion(),
17
needsauth.NotWithoutArgs(),
18
+ // skip 1Password authentication for "sam docs", "sam init", "sam local" and "sam validate" and their subcommands
19
+ needsauth.NotWhenContainsArgs("docs"),
20
+ needsauth.NotWhenContainsArgs("init"),
21
+ needsauth.NotWhenContainsArgs("local"),
22
+ needsauth.NotWhenContainsArgs("validate"),
23
),
24
Uses: []schema.CredentialUsage{
25
{
0 commit comments