Skip to content

Commit 9241cb9

Browse files
authored
Add Travis CI. Bump module versions (#12)
* Bump `terraform-null-label` version to `0.3.1` * Add Travis CI
1 parent 66ad1f7 commit 9241cb9

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
addons:
2+
apt:
3+
packages:
4+
- git
5+
- make
6+
- curl
7+
8+
install:
9+
- make init
10+
11+
script:
12+
- make terraform:install
13+
- make terraform:get-plugins
14+
- make terraform:get-modules
15+
- make terraform:lint
16+
- make terraform:validate

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 2017 Cloud Posse, LLC
189+
Copyright 2017-2018 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.

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SHELL := /bin/bash
2+
3+
-include $(shell curl -sSL -o .build-harness "https://git.io/build-harness"; echo .build-harness)
4+
5+
lint:
6+
$(SELF) terraform:install terraform:get-modules terraform:get-plugins terraform:lint terraform:validate

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# terraform-aws-codebuild
1+
# terraform-aws-codebuild [![Build Status](https://travis-ci.org/cloudposse/terraform-aws-codebuild.svg)](https://travis-ci.org/cloudposse/terraform-aws-codebuild)
22

33
Terraform module to create AWS CodeBuild project for AWS CodePipeline
44

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/terraform-null-label.git?ref=tags/0.2.1"
9+
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.3.1"
1010
namespace = "${var.namespace}"
1111
name = "${var.name}"
1212
stage = "${var.stage}"

0 commit comments

Comments
 (0)