terraform: use less plugins
be more specific with the plugins that we use, avoid downloading 300MiB of plugins
zimbatm committed
Oct 4, 2018 at 12:50 UTC
f84dfcfbccf6d31fbbdf4d9823e9b2a13ad24925
1 file changed
+4
-1
terraform/shell.nix
+4
-1
@@ -1,4 +1,7 @@
1
with import <nixpkgs> {};
2
+let
3
+ my-terraform = terraform.withPlugins (p: with p; [ aws ]);
4
+in
5
mkShell {
3
- buildInputs = [ terraform-full ];
6
+ buildInputs = [ my-terraform ];
7
}