mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Add influxdb-v2 Terraform provider
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
468ca35a58
commit
53ec369b90
|
@ -76,6 +76,7 @@
|
|||
overlays/maildrop
|
||||
overlays/courier-unicode.nix
|
||||
overlays/ds3os.nix
|
||||
overlays/terraform-provider-influxdb-v2.nix
|
||||
];
|
||||
|
||||
flake.nixosModules = {
|
||||
|
|
23
overlays/terraform-provider-influxdb-v2.nix
Normal file
23
overlays/terraform-provider-influxdb-v2.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ ... }:
|
||||
{
|
||||
flake.overlays.terraform-provider-influxdb-v2 =
|
||||
final: prev:
|
||||
{
|
||||
terraform = prev.terraform.overrideAttrs (old: {
|
||||
passthru.plugins =
|
||||
old.passthru.plugins
|
||||
// {
|
||||
influxdb-v2 =
|
||||
old.passthru.plugins.mkProvider {
|
||||
owner = "MagicRB";
|
||||
repo = "terraform-provider-influxdb-v2";
|
||||
rev = "4f10e465f9526b47d1ef97a8f2e109aa85a7d647";
|
||||
version = "0.4.6";
|
||||
hash = "sha256-/IQoA1CwYIafHbHKSZq7pZKFxefgd09fm0lnBW3r11Q=";
|
||||
vendorHash = "sha256-g7Njs7psHFFSWk44CiV+blLrzpnB+L9HgMTx3lLMA8Q=";
|
||||
provider-source-address = "registry.terraform.io/MagicRB/influxdb-v2";
|
||||
};
|
||||
};
|
||||
} );
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue