terraform-providers: update

This commit is contained in:
Florian Klink 2020-03-24 12:43:57 +01:00
parent 3e5149a79a
commit 9f270c6491
3 changed files with 542 additions and 225 deletions

View file

@ -54,6 +54,81 @@ let
google = patchGoModVendor automated-providers.google; google = patchGoModVendor automated-providers.google;
google-beta = patchGoModVendor automated-providers.google-beta; google-beta = patchGoModVendor automated-providers.google-beta;
# providers that were moved to the `hashicorp` organization,
# but haven't updated their references yet:
# https://github.com/hashicorp/terraform-provider-archive/pull/67
archive = automated-providers.archive.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-archive hashicorp/terraform-provider-archive
substituteInPlace main.go --replace terraform-providers/terraform-provider-archive hashicorp/terraform-provider-archive
'';
});
# https://github.com/hashicorp/terraform-provider-dns/pull/101
dns = automated-providers.dns.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-dns hashicorp/terraform-provider-dns
substituteInPlace main.go --replace terraform-providers/terraform-provider-dns hashicorp/terraform-provider-dns
'';
});
# https://github.com/hashicorp/terraform-provider-external/pull/41
external = automated-providers.external.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-external hashicorp/terraform-provider-external
substituteInPlace main.go --replace terraform-providers/terraform-provider-external hashicorp/terraform-provider-external
'';
});
# https://github.com/hashicorp/terraform-provider-http/pull/40
http = automated-providers.http.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-http hashicorp/terraform-provider-http
substituteInPlace main.go --replace terraform-providers/terraform-provider-http hashicorp/terraform-provider-http
'';
});
# https://github.com/hashicorp/terraform-provider-local/pull/40
local = automated-providers.local.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-local hashicorp/terraform-provider-local
substituteInPlace main.go --replace terraform-providers/terraform-provider-local hashicorp/terraform-provider-local
'';
});
# https://github.com/hashicorp/terraform-provider-null/pull/43
null = automated-providers.null.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-null hashicorp/terraform-provider-null
substituteInPlace main.go --replace terraform-providers/terraform-provider-null hashicorp/terraform-provider-null
'';
});
# https://github.com/hashicorp/terraform-provider-random/pull/107
random = automated-providers.random.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-random hashicorp/terraform-provider-random
substituteInPlace main.go --replace terraform-providers/terraform-provider-random hashicorp/terraform-provider-random
'';
});
# https://github.com/hashicorp/terraform-provider-template/pull/79
template = automated-providers.template.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-template hashicorp/terraform-provider-template
substituteInPlace main.go --replace terraform-providers/terraform-provider-template hashicorp/terraform-provider-template
'';
});
# https://github.com/hashicorp/terraform-provider-tls/pull/71
tls = automated-providers.tls.overrideAttrs (attrs: {
prePatch = attrs.prePatch or "" + ''
substituteInPlace go.mod --replace terraform-providers/terraform-provider-tls hashicorp/terraform-provider-tls
substituteInPlace main.go --replace terraform-providers/terraform-provider-tls hashicorp/terraform-provider-tls
'';
});
elasticsearch = callPackage ./elasticsearch {}; elasticsearch = callPackage ./elasticsearch {};
gandi = callPackage ./gandi {}; gandi = callPackage ./gandi {};
ibm = callPackage ./ibm {}; ibm = callPackage ./ibm {};

View file

@ -124,9 +124,11 @@ slugs=(
blacklist=( blacklist=(
terraform-providers/terraform-provider-azure-classic terraform-providers/terraform-provider-azure-classic
terraform-providers/terraform-provider-cidr terraform-providers/terraform-provider-cidr
terraform-providers/terraform-provider-quorum terraform-providers/terraform-provider-circonus
terraform-providers/terraform-provider-cloudinit terraform-providers/terraform-provider-cloudinit
terraform-providers/terraform-provider-time terraform-providers/terraform-provider-quorum
hashicorp/terraform-provider-time
terraform-providers/terraform-provider-vmc
) )
cat <<HEADER > data.nix cat <<HEADER > data.nix