Skip to content

Commit acf8891

Browse files
authored
Rename Repo, Fix README.md (#8)
1 parent 2055d9b commit acf8891

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2017 Cloud Posse, LLC
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# tf_codebuild
1+
# terraform-aws-codebuild
22

3-
Terraform config to create codebuild project for codepipeline
3+
Terraform module to create AWS CodeBuild project for AWS CodePipeline
44

55
## Usage
66

77
Include this repository as a module in your existing terraform code:
88

9-
```
9+
```hcl
1010
module "build" {
11-
source = "git::https://github.com/cloudposse/tf_codebuild.git?ref=tags/0.5.0"
11+
source = "git::https://github.com/cloudposse/terraform-aws-codebuild.git?ref=master"
1212
namespace = "general"
1313
name = "ci"
1414
stage = "staging"
@@ -22,7 +22,7 @@ module "build" {
2222
# http://docs.aws.amazon.com/codebuild/latest/userguide/sample-docker.html
2323
# https://www.terraform.io/docs/providers/aws/r/codebuild_project.html
2424
25-
privileged_mode = true
25+
privileged_mode = "true"
2626
aws_region = "us-east-1"
2727
aws_account_id = "xxxxxxxxxx"
2828
image_repo_name = "ecr-repo-name"
@@ -31,7 +31,6 @@ module "build" {
3131
```
3232

3333

34-
3534
## Input
3635

3736
| Name | Default | Description |
@@ -57,3 +56,8 @@ module "build" {
5756
| project_name | CodeBuild project name |
5857
| project_id | CodeBuild project ARN |
5958
| role_arn | IAM Role ARN |
59+
60+
61+
## License
62+
63+
Apache 2 License. See [`LICENSE`](LICENSE) for full details.

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ data "aws_region" "default" {
66

77
# Define composite variables for resources
88
module "label" {
9-
source = "git::https://github.com/cloudposse/tf_label.git?ref=tags/0.2.0"
9+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
1010
namespace = "${var.namespace}"
1111
name = "${var.name}"
1212
stage = "${var.stage}"

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ variable "tags" {
4040
}
4141

4242
variable "privileged_mode" {
43-
default = false
43+
default = "false"
4444
description = "(Optional) If set to true, enables running the Docker daemon inside a Docker container on the CodeBuild instance. Used when building Docker images"
4545
}
4646

0 commit comments

Comments
 (0)