Skip to content
This repository was archived by the owner on Oct 8, 2022. It is now read-only.

Commit 7425f45

Browse files
authored
Add support for CircleCI (#20)
Execute a Terraform formatting check via CircleCI.
1 parent c3be32c commit 7425f45

File tree

4 files changed

+40
-1
lines changed

4 files changed

+40
-1
lines changed

.circleci/config.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
3+
jobs:
4+
build:
5+
docker:
6+
- image: hashicorp/terraform:latest
7+
8+
steps:
9+
- checkout
10+
- run:
11+
name: Install Bash
12+
command: apk add --no-cache bash
13+
- run:
14+
name: Execute cibuild
15+
command: ./scripts/cibuild

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2015 Azavea Inc.
190+
Copyright 2019 Azavea Inc.
191191

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

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# terraform-aws-redis-elasticache
22

3+
[![CircleCI](https://circleci.com/gh/azavea/terraform-aws-redis-elasticache.svg?style=svg)](https://circleci.com/gh/azavea/terraform-aws-redis-elasticache)
4+
35
A Terraform module to create an Amazon Web Services (AWS) Redis ElastiCache cluster.
46

57
## Usage

scripts/cibuild

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
if [[ -n "${CI_DEBUG}" ]]; then
6+
set -x
7+
fi
8+
9+
function usage() {
10+
echo -n \
11+
"Usage: $(basename "$0")
12+
Ensure the Terraform source code is properly formatted.
13+
"
14+
}
15+
16+
if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
17+
if [ "${1:-}" = "--help" ]; then
18+
usage
19+
else
20+
terraform fmt -check
21+
fi
22+
fi

0 commit comments

Comments
 (0)