infra/terraform/shell.nix

21 lines
351 B
Nix
Raw Normal View History

2023-12-11 13:33:38 +10:00
{ pkgs, ... }:
let
2023-12-11 13:33:38 +10:00
terraform' = pkgs.terraform.overrideAttrs (_: { meta = { }; });
in
2023-05-19 23:51:43 +10:00
{
devShells = {
2023-12-11 13:33:38 +10:00
terraform = with pkgs; mkShellNoCC {
2023-05-19 23:51:43 +10:00
packages = [
(terraform'.withPlugins (p: [
2023-05-19 23:51:43 +10:00
p.cloudflare
p.external
p.hydra
p.null
p.sops
p.tfe
]))
];
};
};
}