-
Notifications
You must be signed in to change notification settings - Fork 0
212 lines (179 loc) · 6.61 KB
/
terraform.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
name: "Terraform Module Validation"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: write
pull-requests: write
security-events: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
discover:
name: "Discover Modules and Examples"
runs-on: ubuntu-latest
outputs:
modules: ${{ steps.set-modules.outputs.modules }}
examples: ${{ steps.set-examples.outputs.examples }}
steps:
- uses: actions/checkout@v4
- id: set-modules
run: |
# Find all directories containing .tf files, excluding .terraform and examples directories
MODULES=$(find . -type f -name "*.tf" -not -path "*/\.*" -not -path "*/examples/*" -exec dirname {} \; | sort -u | sed 's/^\.\///' | jq -R -s -c 'split("\n")[:-1]')
echo "modules=$MODULES" >> $GITHUB_OUTPUT
- id: set-examples
run: |
# Find all directories containing examples/**/main.tf files
EXAMPLES=$(find . -type f -name "main.tf" -path "*/examples/*" -exec dirname {} \; | sort -u | sed 's/^\.\///' | jq -R -s -c 'split("\n")[:-1]')
echo "examples=$EXAMPLES" >> $GITHUB_OUTPUT
validate-modules:
name: "Validate Modules"
needs: discover
runs-on: ubuntu-latest
strategy:
matrix:
module: ${{ fromJson(needs.discover.outputs.modules) }}
defaults:
run:
working-directory: ${{ matrix.module }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: 0
token: ${{ secrets.GH_CQ_BOT }}
- name: Configure Git for Pull Request
if: github.event_name == 'pull_request'
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
- name: Terraform Format
id: fmt
run: terraform fmt -check -recursive
- uses: terraform-linters/setup-tflint@v4
name: Setup TFLint
with:
tflint_version: v0.52.0
- name: Show version
run: tflint --version
- name: Init TFLint
run: tflint --init
env:
# https://github.com/terraform-linters/tflint/blob/master/docs/user-guide/plugins.md#avoiding-rate-limiting
GITHUB_TOKEN: ${{ github.GH_CQ_BOT }}
- name: Run TFLint
run: tflint -f compact
- name: Validate Module Structure
id: validate
run: |
# Check for required files in module root
for file in README.md variables.tf outputs.tf versions.tf; do
if [ ! -f "$file" ]; then
echo "::error::Missing required file: $file"
exit 1
fi
done
# Validate all .tf files syntax, excluding examples directory
for file in $(find . -name "*.tf" -not -path "./examples/*"); do
if ! terraform fmt -check "$file"; then
echo "::error::Invalid HCL syntax in $file"
exit 1
fi
done
# Check for template files if config directory exists
if [ -d "config" ]; then
for tpl in config/*/**.tpl; do
if [ ! -f "$tpl" ]; then
echo "::error::Missing template file: $tpl"
exit 1
fi
done
fi
- name: Generate Terraform Docs
uses: terraform-docs/terraform-docs-action@v1
with:
working-dir: ${{ matrix.module }}
output-file: README.md
output-method: inject
git-push: true
git-commit-message: "docs: update terraform docs"
- name: Run tfsec
uses: aquasecurity/[email protected]
with:
working_directory: ${{ matrix.module }}
soft_fail: true
- name: Create KICS results directory
run: |
# Create results directory based on module name without leading ./
results_dir="${GITHUB_WORKSPACE}/kics-results-${{ matrix.module }}"
mkdir -p "$results_dir"
echo "KICS_RESULTS_DIR=$results_dir" >> $GITHUB_ENV
- name: Run KICS scan
uses: checkmarx/[email protected]
with:
path: ${{ matrix.module }}
config_path: .kics.config
platform_type: terraform
output_path: ${{ env.KICS_RESULTS_DIR }}
output_formats: "json,sarif"
fail_on: high
enable_comments: true
- name: Upload KICS results
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ env.KICS_RESULTS_DIR }}/results.sarif
category: ${{ matrix.module }}
- name: Comment on PR
uses: actions/github-script@v6
if: github.event_name == 'pull_request' && (steps.fmt.outcome == 'failure' || steps.validate.outcome == 'failure')
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const output = `### Module: \`${{ matrix.module }}\`
### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\`
### Module Structure Validation 🤖\`${{ steps.validate.outcome }}\`
*Pushed by: @${{ github.actor }}, Action: \`${{ github.event_name }}\`*`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})
validate-examples:
name: "Validate Examples"
needs: discover
runs-on: ubuntu-latest
strategy:
matrix:
example: ${{ fromJson(needs.discover.outputs.examples) }}
defaults:
run:
working-directory: ${{ matrix.example }}
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: "arn:aws:iam::615713231484:role/cq-playground-aws-github-action"
aws-region: us-east-1
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
- name: Terraform Format
run: terraform fmt -check -recursive
- name: Terraform Init
run: terraform init
- name: Terraform Validate
run: terraform validate
- name: Terraform Plan
run: terraform plan