infra/terraform/shell.nix

17 lines
277 B
Nix

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