infra/terraform/shell.nix
2024-01-20 23:43:03 +00:00

20 lines
351 B
Nix

{ pkgs, ... }:
let
terraform' = pkgs.terraform.overrideAttrs (_: { meta = { }; });
in
{
devShells = {
terraform = with pkgs; mkShellNoCC {
packages = [
(terraform'.withPlugins (p: [
p.cloudflare
p.external
p.hydra
p.null
p.sops
p.tfe
]))
];
};
};
}