nixpkgs/pkgs/applications/networking/cluster/terraform/provider-path.patch
Dan Peebles 80319c1238 terraform: manage 0.10 plugins with Nix
Also add a few starter plugins/providers
2017-08-30 18:35:26 -04:00

17 lines
415 B
Diff

diff --git a/command/init.go b/command/init.go
index 403ca245b..05d98329a 100644
--- a/command/init.go
+++ b/command/init.go
@@ -64,6 +64,11 @@ func (c *InitCommand) Run(args []string) int {
return 1
}
+ val, ok := os.LookupEnv("NIX_TERRAFORM_PLUGIN_DIR")
+ if ok {
+ flagPluginPath = append(flagPluginPath, val)
+ }
+
if len(flagPluginPath) > 0 {
c.pluginPath = flagPluginPath
c.getPlugins = false