Skip to content

Commit

Permalink
Merge pull request hashicorp#27461 from hashicorp/pselle/verify-plugins
Browse files Browse the repository at this point in the history
Remove verify-plugins flag
  • Loading branch information
Pam Selle authored Jan 11, 2021
2 parents 462caaf + da5a28e commit 801f8aa
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions command/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ func (c *InitCommand) Run(args []string) int {
var flagFromModule string
var flagBackend, flagGet, flagUpgrade, getPlugins bool
var flagPluginPath FlagStringSlice
var flagVerifyPlugins bool
flagConfigExtra := newRawFlags("-backend-config")

args = c.Meta.process(args)
Expand All @@ -50,7 +49,6 @@ func (c *InitCommand) Run(args []string) int {
cmdFlags.BoolVar(&c.reconfigure, "reconfigure", false, "reconfigure")
cmdFlags.BoolVar(&flagUpgrade, "upgrade", false, "")
cmdFlags.Var(&flagPluginPath, "plugin-dir", "plugin directory")
cmdFlags.BoolVar(&flagVerifyPlugins, "verify-plugins", true, "verify plugins")
cmdFlags.Usage = func() { c.Ui.Error(c.Help()) }
if err := cmdFlags.Parse(args); err != nil {
return 1
Expand Down Expand Up @@ -932,7 +930,6 @@ func (c *InitCommand) AutocompleteFlags() complete.Flags {
"-plugin-dir": complete.PredictDirs(""),
"-reconfigure": complete.PredictNothing,
"-upgrade": completePredictBoolean,
"-verify-plugins": completePredictBoolean,
}
}

Expand Down Expand Up @@ -997,9 +994,6 @@ Options:
-upgrade=false If installing modules (-get) or plugins, ignore
previously-downloaded objects and install the
latest version allowed within configured constraints.
-verify-plugins=true Verify the authenticity and integrity of automatically
downloaded plugins.
`
return strings.TrimSpace(helpText)
}
Expand Down

0 comments on commit 801f8aa

Please sign in to comment.