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

Commit 05ab5a2

Browse files
committed
Fixed GitHub webhook creation by temporarily downgrading provider to < 1
1 parent e628c85 commit 05ab5a2

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
terraform-aws-github-ci-0.5.4 (2018-08-18)
2+
3+
* Fixed GitHub webhook creation by temporarily downgrading provider to < 1
4+
5+
terraform-aws-github-ci-0.5.3 (2018-06-04)
6+
7+
* Added support for privileged mode
8+
19
terraform-aws-github-ci-0.5.2 (2018-05-16)
210

311
* Fixed indeterministic environment variable mapping

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Next, add the following module to your Terraform configuration and apply it:
5454
``` hcl
5555
module "github_ci" {
5656
source = "github.com/squidfunk/terraform-aws-github-ci"
57-
version = "0.5.3"
57+
version = "0.5.4"
5858
5959
namespace = "<namespace>"
6060
github_owner = "<owner>"

modules/webhook/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
# IN THE SOFTWARE.
2020

2121
provider "github" {
22+
version = "< 1.0.0"
2223
organization = "${var.github_owner}"
2324
token = "${var.github_oauth_token}"
2425
}

0 commit comments

Comments
 (0)