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

Commit 352c072

Browse files
committed
Changed README example to work with Terraform 0.11
1 parent 0440470 commit 352c072

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ Include and configure this module in your Terraform configuration:
6161

6262
``` hcl
6363
module "github_ci" {
64-
source = "github.com/squidfunk/terraform-aws-github-ci"
64+
source = "github.com/squidfunk/terraform-aws-github-ci"
65+
version = "0.2.0"
6566
6667
github_owner = "<owner>"
6768
github_repository = "<repository>"
@@ -172,7 +173,7 @@ resource "aws_codebuild_project" "codebuild" {
172173
173174
artifacts {
174175
type = "S3"
175-
location = "${aws_s3_bucket.codebuild.bucket}"
176+
location = "${var.codebuild_bucket}"
176177
name = "${var.github_repository}"
177178
namespace_type = "BUILD_ID"
178179
packaging = "ZIP"

0 commit comments

Comments
 (0)