main
nix 19 lines 381 Bytes
Raw
1 {
2 perSystem =
3 { pkgs, ... }:
4 {
5 devShells.terraform = pkgs.mkShellNoCC {
6 packages = [
7 pkgs.awscli2
8 (pkgs.opentofu.withPlugins (
9 plugin: with plugin; [
10 hashicorp_aws
11 fastly_fastly
12 aegirhealth_netlify
13 numtide_secret
14 ]
15 ))
16 ];
17 };
18 };
19 }