infra/terraform/shell.nix
2024-07-24 10:27:26 +00:00

19 lines
311 B
Nix

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