tvl-depot/third_party/terraform-provider-glesys/default.nix
Vincent Ambo 1521599fe2 chore(3p/terraform-provider-glesys): bump to v0.3.2
This fixes an issue with object storage instances that don't have the
default credential, which is actually the case for one of ours.

Change-Id: I805b4957d85a0a5e91e7027cce30e5fd69d8fb69
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5694
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: tazjin <tazjin@tvl.su>
2022-05-27 21:10:35 +00:00

19 lines
580 B
Nix

# GleSYS Terraform provider
#
# Some TVL resources (DNS, object storage, ...) are hosted with them.
{ pkgs, ... }:
pkgs.terraform-providers.mkProvider rec {
version = "0.3.2";
owner = "glesys";
repo = "terraform-provider-glesys";
rev = "v${version}";
sha256 = "1hlqa4f9d44hq614ff8ivg8a6fwg48jwz11zsrlghjzky82cfraq";
vendorSha256 = "0g5g69absf0vmin0ff0anrxcgfq0bzx4iz3qci90p9xkvyph4nlw";
# This provider is not officially published in the TF registry, so
# we're giving it a fake source here.
provider-source-address = "registry.terraform.io/depot/glesys";
}