infra/terraform/shell.nix
2023-12-17 11:50:04 +00:00

21 lines
369 B
Nix

{ pkgs, ... }:
let
terraform' = pkgs.terraform.overrideAttrs (_: { meta = { }; });
in
{
devShells = {
terraform = with pkgs; mkShellNoCC {
packages = [
(terraform'.withPlugins (p: [
p.cloudflare
p.external
p.gandi
p.hydra
p.null
p.sops
p.tfe
]))
];
};
};
}