This repository was archived by the owner on Oct 8, 2022. It is now read-only.
File tree 4 files changed +40
-1
lines changed
4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 187
187
same "printed page" as the copyright notice for easier
188
188
identification within third-party archives.
189
189
190
- Copyright 2015 Azavea Inc.
190
+ Copyright 2019 Azavea Inc.
191
191
192
192
Licensed under the Apache License, Version 2.0 (the "License");
193
193
you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 1
1
# terraform-aws-redis-elasticache
2
2
3
+ [ ![ CircleCI] ( https://circleci.com/gh/azavea/terraform-aws-redis-elasticache.svg?style=svg )] ( https://circleci.com/gh/azavea/terraform-aws-redis-elasticache )
4
+
3
5
A Terraform module to create an Amazon Web Services (AWS) Redis ElastiCache cluster.
4
6
5
7
## Usage
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments