-
Notifications
You must be signed in to change notification settings - Fork 8
81 lines (80 loc) · 2.86 KB
/
verify-ec2.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
name: Verify the Baseline on EC2
on:
push:
branches: [master]
pull_request:
branches: [master]
release:
types:
- published
jobs:
my-job:
name: Validate my profile
runs-on: ubuntu-latest
env:
CHEF_LICENSE: accept-silent
KITCHEN_YAML: kitchen.ec2.yml
strategy:
matrix:
suite: ["vanilla", "hardened"]
fail-fast: false
steps:
- name: add needed packages
run: sudo apt-get install -y jq
- name: Configure AWS credentials
env:
AWS_SUBNET_ID: ${{ secrets.AWS_SUBNET_ID }}
AWS_SSH_KEY_ID: ${{ secrets.AWS_SSH_KEY_ID }}
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Check out repository
uses: actions/checkout@v4
- name: Clone full repository so we can push
run: git fetch --prune --unshallow
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7"
# - name: Setup caching
# uses: actions/cache@v4
# with:
# path: vendor/bundle
# key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
# restore-keys: |
# ${{ runner.os }}-gems-
- name: Bundle install
run: |
gem install bundler
bundle config path vendor/bundle
bundle install
- name: Regenerate current `profile.json`
run: |
bundle exec inspec json . | jq . > profile.json
- name: Update profile.json in the repository
uses: stefanzweifel/[email protected]
with:
commit_message: "Updating profile.json in the repository"
branch: ${{ github.branch }}
- name: Run Kitchen Create
run: bundle exec kitchen create ${{ matrix.suite }}-ubuntu-1804 || true
- name: Run Kitchen Converge
run: bundle exec kitchen converge ${{ matrix.suite }}-ubuntu-1804 || true
- name: Run Kitchen Verify
run: bundle exec kitchen verify ${{ matrix.suite }}-ubuntu-1804 || true
- name: Run Kitchen Destroy
run: bundle exec kitchen destroy ${{ matrix.suite }}-ubuntu-1804 || true
- name: Display our ${{ matrix.suite }} results summary
uses: mitre/saf_action@v1
with:
command_string: "view:summary -i spec/results/${{ matrix.suite }}-test-result.json"
- name: Ensure the scan meets our ${{ matrix.suite }} results threshold
uses: mitre/saf_action@v1
with:
command_string: "validate:threshold -i spec/results/${{ matrix.suite }}-test-result.json -F ${{ matrix.suite }}.threshold.yml"
- name: Save Test Result JSON
uses: actions/upload-artifact@v4
with:
path: spec/results