Skip to content

Commit 84c90ee

Browse files
committed
Initial commit
1 parent 3e0b6ba commit 84c90ee

29 files changed

+684
-393
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
local/
12
build/
23
plan.out
34
plan.out.json
@@ -41,4 +42,4 @@ terraform.rc
4142
go.mod
4243
go.sum
4344

44-
.DS_Store
45+
.DS_Store

.header.md

Lines changed: 0 additions & 63 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 36 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,38 @@
1-
---
2-
fail_fast: false
3-
minimum_pre_commit_version: "2.6.0"
41
repos:
5-
-
6-
repo: https://github.com/aws-ia/pre-commit-configs
7-
# To update run:
8-
# pre-commit autoupdate --freeze
9-
rev: 80ed3f0a164f282afaac0b6aec70e20f7e541932 # frozen: v1.5.0
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.4.0
104
hooks:
11-
- id: aws-ia-meta-hook
5+
- id: trailing-whitespace
6+
args: ['--markdown-linebreak-ext=md']
7+
- id: end-of-file-fixer
8+
- id: check-merge-conflict
9+
- id: detect-private-key
10+
- repo: https://github.com/antonbabenko/pre-commit-terraform
11+
rev: v1.77.1
12+
hooks:
13+
- id: terraform_fmt
14+
- id: terraform_docs
15+
args:
16+
- '--args=--lockfile=false'
17+
- id: terraform_tflint
18+
args:
19+
- '--args=--only=terraform_deprecated_interpolation'
20+
- '--args=--only=terraform_deprecated_index'
21+
- '--args=--only=terraform_unused_declarations'
22+
- '--args=--only=terraform_comment_syntax'
23+
- '--args=--only=terraform_documented_outputs'
24+
- '--args=--only=terraform_documented_variables'
25+
- '--args=--only=terraform_typed_variables'
26+
- '--args=--only=terraform_module_pinned_source'
27+
- '--args=--only=terraform_naming_convention'
28+
- '--args=--only=terraform_required_version'
29+
- '--args=--only=terraform_required_providers'
30+
- '--args=--only=terraform_standard_module_structure'
31+
- '--args=--only=terraform_workspace_remote'
32+
- '--args=--only=terraform_empty_list_equality'
33+
- '--args=--only=terraform_unused_required_providers'
34+
- id: terraform_validate
35+
- id: terraform_tfsec
36+
args:
37+
- --args=--config-file=__GIT_WORKING_DIR__/.tfsec.yaml
38+
- --args=--concise-output

.terraform-docs.yaml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.tflint.hcl

Lines changed: 0 additions & 66 deletions
This file was deleted.

.tfsec.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exclude:

.tfsec/launch_configuration_imdsv2_tfchecks.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

.tfsec/launch_template_imdsv2_tfchecks.json

Lines changed: 0 additions & 39 deletions
This file was deleted.

.tfsec/no_launch_config_tfchecks.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.tfsec/sg_no_embedded_egress_rules_tfchecks.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.tfsec/sg_no_embedded_ingress_rules_tfchecks.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

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 2023 GitOps Bridge
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.

0 commit comments

Comments
 (0)