Skip to content

Commit 6bfe6f5

Browse files
authored
Rewrote to use Terraform 0.12 features + NLB + cleanup (terraform-aws-modules#128)
* Rewrote to use Terraform 0.12 features * Cleanup * Fixed README
1 parent 4626509 commit 6bfe6f5

34 files changed

+914
-1443
lines changed

.editorconfig

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
# Uses editorconfig to maintain consistent coding styles
3+
4+
# top-most EditorConfig file
5+
root = true
6+
7+
# Unix-style newlines with a newline ending every file
8+
[*]
9+
charset = utf-8
10+
end_of_line = lf
11+
indent_size = 2
12+
indent_style = space
13+
insert_final_newline = true
14+
max_line_length = 80
15+
trim_trailing_whitespace = true
16+
17+
[*.{tf,tfvars}]
18+
indent_size = 2
19+
indent_style = space
20+
21+
[*.md]
22+
max_line_length = 0
23+
trim_trailing_whitespace = false
24+
25+
[Makefile]
26+
tab_width = 2
27+
indent_style = tab
28+
29+
[COMMIT_EDITMSG]
30+
max_line_length = 0

.gitignore

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
*.tfvars
2-
*.tfstate*
31
.terraform
4-
**/inspec.lock
5-
*.gem
6-
.kitchen
7-
.kitchen.local.yml
8-
Gemfile.lock
9-
terraform.tfstate.d
2+
terraform.tfstate
3+
*.tfstate*
4+
terraform.tfvars

.kitchen.yml

-20
This file was deleted.

.pre-commit-config.yaml

+2-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
# See http://pre-commit.com for more information
2-
# See http://pre-commit.com/hooks.html for more hooks
31
repos:
42
- repo: git://github.com/antonbabenko/pre-commit-terraform
5-
rev: v1.14.0
3+
rev: v1.20.0
64
hooks:
75
- id: terraform_fmt
86
- id: terraform_docs
97
- repo: git://github.com/pre-commit/pre-commit-hooks
10-
rev: v2.2.3
8+
rev: v2.4.0
119
hooks:
1210
- id: check-merge-conflict
13-
- id: trailing-whitespace
14-
# - id: end-of-file-fixer
15-
- id: check-yaml
16-
- id: check-added-large-files

.ruby-version

-1
This file was deleted.

.travis.yml

-48
This file was deleted.

Gemfile

-9
This file was deleted.

LICENSE

+9-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
1-
Copyright (c) 2017 Brandon O'Connor - Run at Scale
1+
Licensed under the Apache License, Version 2.0 (the "License");
2+
you may not use this file except in compliance with the License.
3+
You may obtain a copy of the License at
24

3-
Permission is hereby granted, free of charge, to any person obtaining a copy
4-
of this software and associated documentation files (the "Software"), to deal
5-
in the Software without restriction, including without limitation the rights
6-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7-
copies of the Software, and to permit persons to whom the Software is
8-
furnished to do so, subject to the following conditions:
5+
http://www.apache.org/licenses/LICENSE-2.0
96

10-
The above copyright notice and this permission notice shall be included in all
11-
copies or substantial portions of the Software.
12-
13-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19-
SOFTWARE.
7+
Unless required by applicable law or agreed to in writing, software
8+
distributed under the License is distributed on an "AS IS" BASIS,
9+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
See the License for the specific language governing permissions and
11+
limitations under the License.

0 commit comments

Comments
 (0)