infra/terraform/shell.nix
2023-05-22 10:18:26 +00:00

18 lines
324 B
Nix

{ 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
]))
];
};
};
}