Add influxdb-v2 Terraform provider

Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
Magic_RB 2023-06-14 12:22:27 +02:00
parent 468ca35a58
commit 53ec369b90
2 changed files with 24 additions and 0 deletions

View file

@ -76,6 +76,7 @@
overlays/maildrop
overlays/courier-unicode.nix
overlays/ds3os.nix
overlays/terraform-provider-influxdb-v2.nix
];
flake.nixosModules = {

View 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";
};
};
} );
};
}