nixos-config/terranix/graylog/shell.nix

15 lines
351 B
Nix
Raw Normal View History

2021-07-13 23:16:00 +02:00
{ pkgs ? import <nixpkgs> { } }:
let pass_access_token_path = "development/graylog/access_token";
2021-07-13 22:33:04 +02:00
2021-07-13 23:16:00 +02:00
in pkgs.mkShell {
2021-07-13 22:33:04 +02:00
buildInputs = with pkgs; [
terranix
(writers.writeBashBin "terraform" ''
export GRAYLOG_AUTH_NAME=`${pkgs.pass}/bin/pass show ${pass_access_token_path}`
${pkgs.terraform_0_15}/bin/terraform "$@"
'')
];
}