dev-templates/hashi/flake.nix

44 lines
928 B
Nix
Raw Normal View History

2022-07-31 18:11:52 +02:00
{
description =
2022-07-31 18:20:01 +02:00
"A Nix-flake-based development environment for Terraform, Packer, and Nomad";
2022-07-31 18:11:52 +02:00
2022-08-20 12:06:53 +02:00
inputs = {
2023-03-06 12:28:29 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
2022-08-20 12:06:53 +02:00
flake-utils.url = "github:numtide/flake-utils";
};
2022-07-31 18:11:52 +02:00
outputs =
{ self
, nixpkgs
2023-03-06 12:28:29 +01:00
, flake-utils
}:
2022-07-31 18:11:52 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
2023-02-15 01:20:41 +01:00
packages = with pkgs; [
2022-08-13 17:32:28 +02:00
packer
terraform
2022-08-23 14:42:54 +02:00
tflint
2022-08-13 17:32:28 +02:00
nomad
vault
nomad-autoscaler
nomad-pack
levant
damon
terragrunt
2022-08-13 17:32:28 +02:00
];
2022-07-31 18:11:52 +02:00
shellHook = with pkgs; ''
echo "packer `${packer}/bin/packer --version`"
${terraform}/bin/terraform --version
${nomad}/bin/nomad --version
${vault}/bin/vault --version
'';
};
});
2022-07-31 18:11:52 +02:00
}