infra/terraform/shell.nix
2025-03-03 07:16:27 +00:00

18 lines
290 B
Nix

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