-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update checks and detect partition (#7)
- Loading branch information
Showing
19 changed files
with
492 additions
and
31 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @rhythmictech/engineering |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: misspell | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- prod | ||
- develop | ||
|
||
jobs: | ||
misspell: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: misspell | ||
uses: reviewdog/action-misspell@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
locale: "US" | ||
reporter: github-check | ||
filter_mode: nofilter | ||
level: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: pre-commit-check | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- prod | ||
- develop | ||
|
||
jobs: | ||
pre-commit-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: initialize Terraform | ||
run: terraform init --backend=false | ||
- name: pre-commit | ||
uses: pre-commit/[email protected] | ||
env: | ||
AWS_DEFAULT_REGION: us-east-1 | ||
# many of these are covered by better reviewdog linters below | ||
SKIP: >- | ||
terraform_tflint_deep, | ||
no-commit-to-branch, | ||
terraform_tflint_nocreds, | ||
terraform_tfsec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
--- | ||
name: pull request | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
# TODO: #22 add job using https://github.com/reviewdog/action-alex | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: initialize Terraform | ||
run: terraform init --backend=false | ||
- name: pre-commit | ||
uses: pre-commit/[email protected] | ||
env: | ||
AWS_DEFAULT_REGION: us-east-1 | ||
# many of these are covered by better reviewdog linters below | ||
SKIP: >- | ||
terraform_tflint_deep, | ||
no-commit-to-branch, | ||
terraform_tflint_nocreds, | ||
terraform_tfsec | ||
tflint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: Terraform init | ||
run: terraform init --backend=false | ||
- name: tflint | ||
uses: reviewdog/action-tflint@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-check | ||
filter_mode: added | ||
flags: --module | ||
level: error | ||
tfsec: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: Terraform init | ||
run: terraform init --backend=false | ||
- name: tfsec | ||
uses: reviewdog/action-tfsec@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-check | ||
filter_mode: added | ||
level: warning | ||
misspell: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: misspell | ||
uses: reviewdog/action-misspell@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
locale: "US" | ||
reporter: github-pr-check | ||
filter_mode: added | ||
level: error | ||
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: yamllint | ||
uses: reviewdog/action-yamllint@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-pr-check | ||
filter_mode: added | ||
level: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: tflint | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- prod | ||
- develop | ||
|
||
jobs: | ||
tflint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: Terraform init | ||
run: terraform init --backend=false | ||
- name: tflint | ||
uses: reviewdog/action-tflint@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-check | ||
filter_mode: nofilter | ||
flags: --module | ||
level: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: tfsec | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- prod | ||
- develop | ||
|
||
jobs: | ||
tfsec: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install prerequisites | ||
run: ./bin/install-ubuntu.sh | ||
- name: Terraform init | ||
run: terraform init --backend=false | ||
- name: tfsec | ||
uses: reviewdog/action-tfsec@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-check | ||
filter_mode: nofilter | ||
level: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: yamllint | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
- prod | ||
- develop | ||
|
||
jobs: | ||
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: yamllint | ||
uses: reviewdog/action-yamllint@v1 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
reporter: github-check | ||
filter_mode: nofilter | ||
level: error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Local .terraform directories | ||
**/.terraform/* | ||
|
||
# .tfstate files | ||
*.tfstate | ||
*.tfstate.* | ||
|
||
# .tfvars files | ||
*.tfvars | ||
|
||
# macs | ||
.DS_Store | ||
|
||
# temp folders | ||
tmp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,89 @@ | ||
--- | ||
exclude: ".terraform" | ||
repos: | ||
- repo: git://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.19.0 | ||
hooks: | ||
- id: terraform_fmt | ||
- id: terraform_docs | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.3.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
- id: no-commit-to-branch | ||
- repo: https://github.com/antonbabenko/pre-commit-terraform | ||
rev: v1.72.1 | ||
hooks: | ||
- id: terraform_docs | ||
always_run: true | ||
- id: terraform_fmt | ||
- id: terraform_tflint | ||
alias: terraform_tflint_nocreds | ||
name: terraform_tflint_nocreds | ||
- id: terraform_tfsec | ||
- repo: local | ||
hooks: | ||
- id: terraform_validate | ||
name: terraform_validate | ||
entry: | | ||
bash -c ' | ||
AWS_DEFAULT_REGION=us-east-1 | ||
declare -a DIRS | ||
for FILE in "$@" | ||
do | ||
DIRS+=($(dirname "$FILE")) | ||
done | ||
for DIR in $(printf "%s\n" "${DIRS[@]}" | sort -u) | ||
do | ||
cd $(dirname "$FILE") | ||
terraform init --backend=false | ||
terraform validate . | ||
cd .. | ||
done | ||
' | ||
language: system | ||
verbose: true | ||
files: \.tf(vars)?$ | ||
exclude: examples | ||
- id: tflock | ||
name: provider_locks | ||
entry: | | ||
bash -c ' | ||
AWS_DEFAULT_REGION=us-east-1 | ||
declare -a DIRS | ||
for FILE in "$@" | ||
do | ||
DIRS+=($(dirname "$FILE")) | ||
done | ||
for DIR in $(printf "%s\n" "${DIRS[@]}" | sort -u) | ||
do | ||
cd $(dirname "$FILE") | ||
terraform providers lock -platform=windows_amd64 -platform=darwin_amd64 -platform=linux_amd64 | ||
cd .. | ||
done | ||
' | ||
language: system | ||
verbose: true | ||
files: \.tf(vars)?$ | ||
exclude: examples | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.2.0 | ||
hooks: | ||
- id: check-case-conflict | ||
- id: check-json | ||
- id: check-merge-conflict | ||
- id: check-symlinks | ||
- id: check-yaml | ||
args: | ||
- --unsafe | ||
- id: end-of-file-fixer | ||
- id: mixed-line-ending | ||
args: | ||
- --fix=lf | ||
- id: no-commit-to-branch | ||
args: | ||
- --branch | ||
- main | ||
- --branch | ||
- master | ||
- --branch | ||
- prod | ||
- id: pretty-format-json | ||
args: | ||
- --autofix | ||
- --top-keys=name,Name | ||
- id: trailing-whitespace | ||
args: | ||
- --markdown-linebreak-ext=md | ||
exclude: README.md | ||
ci: | ||
skip: [terraform_docs, terraform_fmt, terraform_tflint, terraform_tfsec, tflock] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.12.13 | ||
latest:^1.1 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.