Skip to content
This repository has been archived by the owner on Apr 18, 2020. It is now read-only.

Commit

Permalink
Fixed GitHub webhook creation by temporarily downgrading provider to < 1
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Aug 18, 2018
1 parent e628c85 commit 05ab5a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
terraform-aws-github-ci-0.5.4 (2018-08-18)

* Fixed GitHub webhook creation by temporarily downgrading provider to < 1

terraform-aws-github-ci-0.5.3 (2018-06-04)

* Added support for privileged mode

terraform-aws-github-ci-0.5.2 (2018-05-16)

* Fixed indeterministic environment variable mapping
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Next, add the following module to your Terraform configuration and apply it:
``` hcl
module "github_ci" {
source = "github.com/squidfunk/terraform-aws-github-ci"
version = "0.5.3"
version = "0.5.4"
namespace = "<namespace>"
github_owner = "<owner>"
Expand Down
1 change: 1 addition & 0 deletions modules/webhook/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# IN THE SOFTWARE.

provider "github" {
version = "< 1.0.0"
organization = "${var.github_owner}"
token = "${var.github_oauth_token}"
}
Expand Down

0 comments on commit 05ab5a2

Please sign in to comment.