-
Notifications
You must be signed in to change notification settings - Fork 14
103 lines (83 loc) · 2.3 KB
/
test.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
name: BVSTACK CI Pipeline
on:
push:
branches:
- main
- actions
pull_request:
branches:
- main
env:
VAULT_ADDR: ${{ vars.VAULT_ADDR }}
VAULT_TOKEN: ${{ vars.VAULT_TOKEN }}
BOUNDARY_ADDR: ${{ vars.BOUNDARY_ADDR }}
jobs:
lint-boundary-terraform:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "boundary/terraform/"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: setup terraform cli
uses: hashicorp/setup-terraform@v3
- name: Terraform fmt
id: fmt
run: terraform fmt -check
continue-on-error: true
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color
- name: validate stdout
run: echo "${{ steps.validate.outputs.stdout }}"
- name: validate sterr
run: echo "${{ steps.validate.outputs.stderr }}"
- name: validate exitcode
run: echo "${{ steps.validate.outputs.exitcode }}"
lint-vault-terraform:
runs-on: ubuntu-latest
defaults:
run:
working-directory: "vault/terraform/"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: setup terraform cli
uses: hashicorp/setup-terraform@v3
- name: Terraform fmt
id: fmt
run: terraform fmt -check
continue-on-error: true
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color
- run: echo ${{ steps.plan.outputs.stdout }}
- run: echo ${{ steps.plan.outputs.stderr }}
- run: echo ${{ steps.plan.outputs.exitcode }}
lint-ansible:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./scripts
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: setup python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: install ansible
run: |
pip install -U pip
pip install ansible wheel
- name: check playbook and role's syntax
run: bash linter.sh ansible