mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +01:00
f9cef34606
Signed-off-by: magic_rb <magic_rb@redalder.org>
20 lines
525 B
Nix
20 lines
525 B
Nix
{config, ...}: {
|
|
flake.overlays.terraform-provider-vault = final: prev: {
|
|
terraform = prev.terraform.overrideAttrs (old: {
|
|
passthru =
|
|
old.passthru
|
|
// {
|
|
plugins =
|
|
old.passthru.plugins
|
|
// {
|
|
vault = old.passthru.plugins.vault.overrideAttrs (old: {
|
|
patches = [
|
|
config.flake.patches.terraform-provider-nomad.allow-null-in-authMountTuneSchema
|
|
];
|
|
});
|
|
};
|
|
};
|
|
});
|
|
};
|
|
}
|