Skip to content

Commit

Permalink
feat(pipeline): adding test pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
kiraum committed Sep 28, 2024
1 parent 1cf52f9 commit 7be18e7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
46 changes: 46 additions & 0 deletions .github/workflows/terraform-lint-format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Terraform Lint and Format

on:
push:
paths:
- '**/*.tf'
- '**/*.tfvars'
pull_request:
paths:
- '**/*.tf'
- '**/*.tfvars'

jobs:
terraform:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Setup Terraform
uses: hashicorp/setup-terraform@v2

- name: Terraform Format
run: terraform fmt -check -recursive

- name: Terraform Init and Validate
run: |
find . -type f \( -name "*.tf" -o -name "*.tfvars" \) -exec dirname {} \; | sort -u | while read dir; do
cd "$dir"
terraform init -backend=false
terraform validate
cd -
done
- name: Run tflint
uses: terraform-linters/setup-tflint@v3
with:
tflint_version: v0.44.1

- name: Run tflint
run: |
find . -type f \( -name "*.tf" -o -name "*.tfvars" \) -exec dirname {} \; | sort -u | while read dir; do
cd "$dir"
tflint
cd -
done
2 changes: 1 addition & 1 deletion environments/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ module "route53" {
{
name = "www"
type = "CNAME"
ttl = 300
ttl = 301
records = ["dpop20p5u4112.cloudfront.net"]
}
]
Expand Down

0 comments on commit 7be18e7

Please sign in to comment.