infra/terraform/shell.nix

19 lines
324 B
Nix
Raw Normal View History

2023-05-19 23:51:43 +10:00
{ inputs', ... }:
{
devShells = {
terraform = with inputs'.tf-pkgs.legacyPackages; mkShellNoCC {
packages = [
(terraform.withPlugins (p: [
p.cloudflare
p.external
p.gandi
p.hydra
p.null
p.sops
p.tfe
]))
];
};
};
}