2021-12-24 17:16:46 +01:00
|
|
|
# GleSYS Terraform provider
|
|
|
|
#
|
|
|
|
# Some TVL resources (DNS, object storage, ...) are hosted with them.
|
|
|
|
{ pkgs, ... }:
|
|
|
|
|
2022-01-27 11:33:52 +01:00
|
|
|
pkgs.terraform-providers.mkProvider rec {
|
2022-05-26 22:46:45 +02:00
|
|
|
version = "0.3.2";
|
2021-12-24 17:16:46 +01:00
|
|
|
|
2022-01-27 11:33:52 +01:00
|
|
|
owner = "glesys";
|
|
|
|
repo = "terraform-provider-glesys";
|
|
|
|
rev = "v${version}";
|
2022-05-26 22:46:45 +02:00
|
|
|
sha256 = "1hlqa4f9d44hq614ff8ivg8a6fwg48jwz11zsrlghjzky82cfraq";
|
2021-12-24 17:16:46 +01:00
|
|
|
|
|
|
|
vendorSha256 = "0g5g69absf0vmin0ff0anrxcgfq0bzx4iz3qci90p9xkvyph4nlw";
|
|
|
|
|
|
|
|
# This provider is not officially published in the TF registry, so
|
|
|
|
# we're giving it a fake source here.
|
2022-01-27 11:33:52 +01:00
|
|
|
provider-source-address = "registry.terraform.io/depot/glesys";
|
2021-12-24 17:16:46 +01:00
|
|
|
}
|