-
Notifications
You must be signed in to change notification settings - Fork 1
707 lines (635 loc) · 24.7 KB
/
quality-checks.yml
File metadata and controls
707 lines (635 loc) · 24.7 KB
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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
name: Quality Checks
on:
workflow_call:
secrets:
SONAR_TOKEN:
required: false
inputs:
install_java:
type: boolean
description: "If true, the action will install java into the runner, separately from ASDF."
default: false
required: false
run_sonar:
type: boolean
description: Toggle to run sonar code analyis on this repository.
default: true
required: false
asdfVersion:
type: string
required: true
reinstall_poetry:
type: boolean
description: Toggle to reinstall poetry on top of python version installed by asdf.
default: false
run_docker_scan:
type: boolean
description: Toggle to run docker vulnerability scan on this repository.
default: false
required: false
docker_images:
type: string
description: comma separated list of docker image references to scan when docker scanning is enabled.
default: ""
required: false
jobs:
quality_checks:
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654
if: ${{ inputs.install_java }}
with:
java-version: "21"
distribution: "corretto"
- &checkout
name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ env.BRANCH_NAME }}
fetch-depth: 0
# Must be done before anything installs, or it will check dependencies for secrets too.
- name: Ensure .gitallowed exists, for secret scanning
run: |
if [ ! -f ".gitallowed" ]; then
echo "Creating empty .gitallowed file"
touch .gitallowed
fi
echo "./nhsd-rules-deny.txt:10" >> .gitallowed
echo "Allowing the following regex patterns:"
cat .gitallowed
- name: Install git-secrets
run: |
sudo apt-get update
sudo apt-get install -y git curl
git clone https://github.com/awslabs/git-secrets.git /tmp/git-secrets
cd /tmp/git-secrets
sudo make install
- name: Download regex patterns
run: |
curl -L https://raw.githubusercontent.com/NHSDigital/software-engineering-quality-framework/main/tools/nhsd-git-secrets/nhsd-rules-deny.txt -o nhsd-rules-deny.txt
- name: Configure git-secrets
run: |
git-secrets --register-aws
git-secrets --add-provider -- cat nhsd-rules-deny.txt
- name: Run secrets scan
run: |
git-secrets --scan-history .
# using git commit sha for version of action to ensure we have stable version
- &install_asdf
name: Install asdf
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
with:
asdf_version: ${{ inputs.asdfVersion }}
- &cache_asdf
name: Cache asdf
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: ~/.asdf
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}-${{ inputs.asdfVersion }}
- &install_asdf_deps
name: Install asdf dependencies in .tool-versions
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
with:
asdf_version: ${{ inputs.asdfVersion }}
env:
PYTHON_CONFIGURE_OPTS: --enable-shared
- &reinstall_poetry
name: Reinstall poetry
if: ${{ inputs.reinstall_poetry }}
run: |
poetry_tool_version=$(cat .tool-versions | grep poetry)
poetry_version=${poetry_tool_version//"poetry "}
asdf uninstall poetry "$poetry_version"
asdf install poetry
- &setup_npmrc
name: Setting up .npmrc
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc
- &cache_npm
name: Cache npm dependencies
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
- name: make install
run: |
make install
- name: Check language tools used and setup trivy config
id: check_languages
run: |
if [ -f "pyproject.toml" ] && grep -q '\[tool.poetry\]' "pyproject.toml"; then
echo "****************"
echo "Detected a poetry project"
echo "****************"
echo "uses_poetry=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not use poetry"
echo "****************"
echo "uses_poetry=false" >> "$GITHUB_OUTPUT"
fi
if [ -f pom.xml ]; then
echo "****************"
echo "Detected a Java project"
echo "****************"
echo "uses_java=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not use Java"
echo "****************"
echo "uses_java=false" >> "$GITHUB_OUTPUT"
fi
if [ -f package-lock.json ]; then
echo "****************"
echo "Detected a Node.js project"
echo "****************"
echo "uses_node=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not use Node.js"
echo "****************"
echo "uses_node=false" >> "$GITHUB_OUTPUT"
fi
if [ -f src/go.sum ]; then
echo "****************"
echo "Detected a Go project"
echo "****************"
echo "uses_go=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not use Go"
echo "****************"
echo "uses_go=false" >> "$GITHUB_OUTPUT"
fi
touch trivy.yaml
- name: Update trivy config to include dev dependencies
uses: mikefarah/yq@5a7e72a743649b1b3a47d1a1d8214f3453173c51
with:
cmd: yq -i '.pkg.include-dev-deps = true' 'trivy.yaml'
- name: convert python dependencies to requirements.txt
if: ${{ steps.check_languages.outputs.uses_poetry == 'true' }}
run: |
POETRY_VERSION=$(poetry --version | awk '{print $3}')
if [[ "$(printf '%s\n' "2.0.0" "$POETRY_VERSION" "3.0.0" | sort -V | head -n1)" == "2.0.0" ]] \
&& [[ "$(printf '%s\n' "$POETRY_VERSION" "3.0.0" | sort -V | head -n1)" == "$POETRY_VERSION" ]]; then
echo "Poetry version $POETRY_VERSION is >=2.0.0 and <3.0.0 - installing plugin-export"
poetry self add poetry-plugin-export
else
echo "Poetry version $POETRY_VERSION is outside the required range so not installing plugin-export"
fi
poetry export -f requirements.txt --with dev --without-hashes --output=requirements.txt
- name: download go dependencies
if: ${{ steps.check_languages.outputs.uses_go == 'true' }}
run: |
cd src
go mod vendor
- name: Check licenses
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
scan-ref: "."
severity: "CRITICAL,HIGH"
scanners: "license"
format: "table"
output: "license_scan.txt"
exit-code: "1"
list-all-pkgs: "false"
trivy-config: trivy.yaml
env:
VIRTUAL_ENV: "./.venv/"
- name: remove requirements.txt
if: ${{ steps.check_languages.outputs.uses_poetry == 'true' }}
run: |
rm -f requirements.txt
- name: clean go dependencies
if: ${{ steps.check_languages.outputs.uses_go == 'true' }}
run: |
cd src
rm -rf vendor
- name: Show license scan output
if: always()
run: |
if [ -f license_scan.txt ]; then
cat license_scan.txt
fi
- name: Run code lint
run: make lint
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38
with:
ignore_paths: >-
*test*
.venv
node_modules
.git
- name: Run unit tests
run: make test
- name: Generate SBOM
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
scan-ref: "."
scanners: "vuln"
format: "cyclonedx"
output: "sbom.cdx.json"
exit-code: "0"
trivy-config: trivy.yaml
- name: Upload sbom
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: sbom.cdx.json
path: sbom.cdx.json
- name: Check python vulnerabilities
if: ${{ always() && steps.check_languages.outputs.uses_poetry == 'true'}}
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
skip-files: "**/package-lock.json,**/go.mod,**/pom.xml"
scan-ref: "."
severity: "CRITICAL,HIGH"
scanners: "vuln"
format: "table"
output: "dependency_results_python.txt"
exit-code: "1"
trivy-config: trivy.yaml
- name: Check node vulnerabilities
if: ${{ always() && steps.check_languages.outputs.uses_node == 'true' }}
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
skip-files: "**/poetry.lock,**/go.mod,**/pom.xml"
scan-ref: "."
severity: "CRITICAL,HIGH"
scanners: "vuln"
format: "table"
output: "dependency_results_node.txt"
exit-code: "1"
trivy-config: trivy.yaml
- name: Check go vulnerabilities
if: ${{ always() && steps.check_languages.outputs.uses_go == 'true' }}
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
skip-files: "**/poetry.lock,**/package-lock.json,**/pom.xml"
scan-ref: "."
severity: "CRITICAL,HIGH"
scanners: "vuln"
format: "table"
output: "dependency_results_go.txt"
exit-code: "1"
- name: Check java vulnerabilities
if: ${{ always() && steps.check_languages.outputs.uses_java == 'true' }}
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "fs"
skip-files: "**/poetry.lock,**/package-lock.json,**/go.mod"
scan-ref: "."
severity: "CRITICAL,HIGH"
scanners: "vuln"
format: "table"
output: "dependency_results_java.txt"
exit-code: "1"
trivy-config: trivy.yaml
- name: Show vulnerability output
if: always()
run: |
if [ -f dependency_results_python.txt ]; then
cat dependency_results_python.txt
fi
if [ -f dependency_results_node.txt ]; then
cat dependency_results_node.txt
fi
if [ -f dependency_results_java.txt ]; then
cat dependency_results_java.txt
fi
if [ -f dependency_results_go.txt ]; then
cat dependency_results_go.txt
fi
- name: "check is SONAR_TOKEN exists"
env:
super_secret: ${{ secrets.SONAR_TOKEN }}
if: ${{ env.super_secret != '' && inputs.run_sonar == true }}
run: echo "SONAR_TOKEN_EXISTS=true" >> "$GITHUB_ENV"
- name: Run SonarQube analysis
if: ${{ steps.check_languages.outputs.uses_java == 'true' && env.SONAR_TOKEN_EXISTS == 'true' }}
run: |
# issues with sonar scanner and sslcontext-kickstart 9.1.0, forcing re-download
rm -rf ~/.m2/repository/io/github/hakky54/sslcontext-kickstart/9.1.0
mvn dependency:get -U -Dartifact=io.github.hakky54:sslcontext-kickstart:9.1.0
# run sonar scan
mvn sonar:sonar -Dsonar.token="$SONAR_TOKEN"
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9
if: ${{ steps.check_languages.outputs.uses_java == 'false' && env.SONAR_TOKEN_EXISTS == 'true' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
get_docker_images_to_scan:
outputs:
docker_images: ${{ steps.normalized_docker_images.outputs.images }}
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ env.BRANCH_NAME }}
fetch-depth: 0
- name: Determine docker images to scan
id: normalized_docker_images
env:
DOCKER_IMAGES: ${{ inputs.docker_images }}
run: |
if [ "${{ inputs.run_docker_scan }}" != "true" ]; then
echo "Docker scanning disabled; emitting empty image list."
echo 'images=[]' >> "$GITHUB_OUTPUT"
exit 0
fi
INPUT="${DOCKER_IMAGES}"
if [ -z "$INPUT" ]; then
INPUT="[]"
fi
normalize_to_json_array() {
local raw="$1"
# If the input already looks like JSON, return as-is
if echo "$raw" | grep -q '^[[:space:]]*\['; then
echo "$raw"
return
fi
local json="["
local first=true
IFS=',' read -ra ITEMS <<< "$raw"
for item in "${ITEMS[@]}"; do
# Trim whitespace around each image reference
item=$(echo "$item" | xargs)
if [ -z "$item" ]; then
continue
fi
if [ "$first" = true ]; then
first=false
else
json+=", "
fi
json+="\"$item\""
done
json+="]"
echo "$json"
}
NORMALIZED=$(normalize_to_json_array "$INPUT")
if [ "$NORMALIZED" = "[]" ]; then
echo "No docker images provided"
exit 1
fi
echo "Using provided docker images: $NORMALIZED"
echo "images=$NORMALIZED" >> "$GITHUB_OUTPUT"
docker_vulnerability_scan:
runs-on: ubuntu-22.04
needs: get_docker_images_to_scan
if: ${{ inputs.run_docker_scan == true }}
strategy:
matrix:
docker_image: ${{ fromJson(needs.get_docker_images_to_scan.outputs.docker_images) }}
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
ref: ${{ env.BRANCH_NAME }}
fetch-depth: 0
# using git commit sha for version of action to ensure we have stable version
- name: Install asdf
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47
with:
asdf_version: ${{ inputs.asdfVersion }}
- name: Cache asdf
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: |
~/.asdf
key: ${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}-${{ inputs.asdfVersion }}
restore-keys: |
${{ runner.os }}-asdf-${{ hashFiles('**/.tool-versions') }}-${{ inputs.asdfVersion }}
- name: Install asdf dependencies in .tool-versions
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47
with:
asdf_version: ${{ inputs.asdfVersion }}
env:
PYTHON_CONFIGURE_OPTS: --enable-shared
- name: Reinstall poetry
if: ${{ inputs.reinstall_poetry }}
run: |
poetry_tool_version=$(cat .tool-versions | grep poetry)
poetry_version=${poetry_tool_version//"poetry "}
asdf uninstall poetry "$poetry_version"
asdf install poetry
- name: Setting up .npmrc
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
echo "@nhsdigital:registry=https://npm.pkg.github.com" >> ~/.npmrc
- name: Cache npm dependencies
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb
with:
path: ./node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: make install
run: |
make install
- name: Build docker images
if: ${{ inputs.run_docker_scan == true }}
run: |
make docker-build
- name: Check docker vulnerabilities
uses: aquasecurity/trivy-action@97e0b3872f55f89b95b2f65b3dbab56962816478
with:
scan-type: "image"
image-ref: ${{ matrix.docker_image }}
severity: "CRITICAL,HIGH"
scanners: "vuln"
vuln-type: "os,library"
format: "table"
output: "dependency_results_docker.txt"
exit-code: "1"
trivy-config: trivy.yaml
- name: Show docker vulnerability output
if: always()
run: |
echo "Scan output for ${{ matrix.docker_image }}"
if [ -f dependency_results_docker.txt ]; then
cat dependency_results_docker.txt
fi
IaC-validation:
runs-on: ubuntu-22.04
steps:
- *checkout
- *install_asdf
- *cache_asdf
- *install_asdf_deps
- *reinstall_poetry
- name: Check for SAM templates
id: check_sam_templates
run: |
if [ -d "SAMtemplates" ]; then
echo "****************"
echo "Project has SAM templates"
echo "****************"
echo "sam_exists=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not have SAM templates"
echo "****************"
echo "sam_exists=false" >> "$GITHUB_OUTPUT"
fi
- name: Check for cloudformation templates
id: check_cf_templates
run: |
if [ -d "cloudformation" ]; then
echo "****************"
echo "Project has cloudformation templates"
echo "****************"
echo "cf_exists=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not have cloudformation templates"
echo "****************"
echo "cf_exists=false" >> "$GITHUB_OUTPUT"
fi
- name: Check for cdk
id: check_cdk
run: |
if [ -d "packages/cdk" ]; then
echo "****************"
echo "Project has cdk"
echo "****************"
echo "cdk_exists=true" >> "$GITHUB_OUTPUT"
else
echo "****************"
echo "Project does not have cdk"
echo "****************"
echo "cdk_exists=false" >> "$GITHUB_OUTPUT"
fi
- name: Run cfn-lint
if: steps.check_sam_templates.outputs.sam_exists == 'true' || steps.check_cf_templates.outputs.cf_exists == 'true'
run: |
pip install cfn-lint
cfn-lint -I "cloudformation/**/*.y*ml" 2>&1 | awk '/Run scan/ { print } /^[EW][0-9]/ { print; getline; print }'
cfn-lint -I "SAMtemplates/**/*.y*ml" 2>&1 | awk '/Run scan/ { print } /^[EW][0-9]/ { print; getline; print }'
- *cache_npm
- *setup_npmrc
- name: make install NodeJS
if: steps.check_cdk.outputs.cdk_exists == 'true'
run: |
make install-node && make compile
- name: Run cdk-synth
if: steps.check_cdk.outputs.cdk_exists == 'true'
run: |
make cdk-synth
- name: Install AWS SAM CLI
if: steps.check_sam_templates.outputs.sam_exists == 'true'
run: |
pip install aws-sam-cli
- name: Init cfn-guard
run: |
#!/usr/bin/env bash
set -eou pipefail
rm -rf /tmp/ruleset
rm -rf cfn_guard_output
wget -O /tmp/ruleset.zip https://github.com/aws-cloudformation/aws-guard-rules-registry/releases/download/1.0.2/ruleset-build-v1.0.2.zip >/dev/null 2>&1
unzip /tmp/ruleset.zip -d /tmp/ruleset/ >/dev/null 2>&1
curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/aws-cloudformation/cloudformation-guard/main/install-guard.sh | sh >/dev/null 2>&1
mkdir -p cfn_guard_output
- name: Run cfn-guard script for sam templates
if: steps.check_sam_templates.outputs.sam_exists == 'true'
run: |
#!/usr/bin/env bash
set -eou pipefail
declare -a rulesets=("ncsc" "ncsc-cafv3" "wa-Reliability-Pillar" "wa-Security-Pillar")
for ruleset in "${rulesets[@]}"
do
while IFS= read -r -d '' file
do
echo "checking SAM template $file with ruleset $ruleset"
mkdir -p "$(dirname cfn_guard_output/"$file")"
# Transform the SAM template to CloudFormation and then run through cfn-guard
SAM_OUTPUT=$(sam validate -t "$file" --region eu-west-2 --debug 2>&1 | \
grep -Pazo '(?s)AWSTemplateFormatVersion.*\n\/' | tr -d '\0')
echo "${SAM_OUTPUT::-1}" | ~/.guard/bin/cfn-guard validate \
--rules "/tmp/ruleset/output/$ruleset.guard" \
--show-summary fail \
> "cfn_guard_output/${file}_${ruleset}.txt"
done < <(find ./SAMtemplates -name '*.y*ml' -print0)
done
- name: Run cfn-guard script for cloudformation templates
if: steps.check_cf_templates.outputs.cf_exists == 'true'
run: |
#!/usr/bin/env bash
declare -a rulesets=("ncsc" "ncsc-cafv3" "wa-Reliability-Pillar" "wa-Security-Pillar")
for ruleset in "${rulesets[@]}"
do
echo "Checking all templates in cloudformation folder with ruleset $ruleset"
~/.guard/bin/cfn-guard validate \
--data cloudformation \
--rules "/tmp/ruleset/output/$ruleset.guard" \
--show-summary fail \
> "cfn_guard_output/cloudformation_$ruleset.txt"
done
- name: Run cfn-guard script for cdk templates
if: steps.check_cdk.outputs.cdk_exists == 'true'
run: |
#!/usr/bin/env bash
declare -a rulesets=("ncsc" "ncsc-cafv3" "wa-Reliability-Pillar" "wa-Security-Pillar")
for ruleset in "${rulesets[@]}"
do
echo "Checking all templates in cdk.out folder with ruleset $ruleset"
~/.guard/bin/cfn-guard validate \
--data cdk.out \
--rules "/tmp/ruleset/output/$ruleset.guard" \
--show-summary fail \
> "cfn_guard_output/cdk.out_$ruleset.txt"
done
- name: Download terraform plans
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3
with:
pattern: "*_terraform_plan"
path: terraform_plans/
merge-multiple: true
- name: Check terraform plans exist
id: check_terraform_plans
run: |
if [ ! -d terraform_plans ]; then
echo "Terraform plans not present."
echo "terraform_plans_exist=false" >> "$GITHUB_OUTPUT"
else
echo "Terraform plans present:"
ls -l terraform_plans/
echo "terraform_plans_exist=true" >> "$GITHUB_OUTPUT"
fi
- name: Run cfn-guard script for terraform plans
if: steps.check_terraform_plans.outputs.terraform_plans_exist == 'true'
run: |
#!/usr/bin/env bash
declare -a rulesets=("ncsc" "ncsc-cafv3" "wa-Reliability-Pillar" "wa-Security-Pillar")
for ruleset in "${rulesets[@]}"
do
echo "Checking terraform plans with ruleset $ruleset"
~/.guard/bin/cfn-guard validate \
--data terraform_plans \
--rules "/tmp/ruleset/output/$ruleset.guard" \
--show-summary fail \
> "cfn_guard_output/terraform_plans_$ruleset.txt"
done
- name: Show cfn-guard output
if: failure()
run: find cfn_guard_output -type f -print0 | xargs -0 cat
- name: Upload cfn_guard_output
if: failure()
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f
with:
name: cfn_guard_output
path: cfn_guard_output