Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit edc91c5

Browse files
committedSep 8, 2017
terraform: revamp the providers list
The updater script wasn't downloading all the providers. It now uses the github auth to work around API rate-limits. Switch back to using derivations as the data-only approach wasn't saving much space. By using folders it allows to interrupt the updater script and still get a valid plugin set.
1 parent 2ae7e95 commit edc91c5

File tree

73 files changed

+804
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+804
-375
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{ buildGoPackage, fetchFromGitHub }:
2+
buildGoPackage {
3+
name = "terraform-provider-alicloud-0.1.0";
4+
goPackagePath = "github.com/terraform-providers/terraform-provider-alicloud";
5+
src = fetchFromGitHub {
6+
owner = "terraform-providers";
7+
repo = "terraform-provider-alicloud";
8+
rev = "v0.1.0";
9+
sha256 = "199zrpmi1hqy80nrvdhh5pn7vlcvpjcsf0hpwgzb1r9vnydpz7cj";
10+
};
11+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{ buildGoPackage, fetchFromGitHub }:
2+
buildGoPackage {
3+
name = "terraform-provider-archive-0.1.0";
4+
goPackagePath = "github.com/terraform-providers/terraform-provider-archive";
5+
src = fetchFromGitHub {
6+
owner = "terraform-providers";
7+
repo = "terraform-provider-archive";
8+
rev = "v0.1.0";
9+
sha256 = "1g7bjak1vgxpnmp4b9cb3mq8gqp1a7738fj0sxzflfk8k35p27ri";
10+
};
11+
}

0 commit comments

Comments
 (0)
Please sign in to comment.