forked from gadiener/ci-templates
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tofu.yml
109 lines (72 loc) · 1.39 KB
/
tofu.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
---
include:
- remote: https://raw.githubusercontent.com/jobtome-labs/ci-templates/v3.38.0/templates/tofu.yml
cache:
key: ${CI_PIPELINE_ID}
paths:
- "${CONFIG_FOLDER_PATH}/.terraform"
tofu:validate:
extends: .tofu
stage: test
script:
- &check |
if [ -n "${CONFIG_FOLDER_PATH}" ]; then
cd "${CONFIG_FOLDER_PATH}"
fi
- tofu --version
- tofu init -backend=false
- tofu validate
only:
- /^v.+$/i
- master
- merge_requests
tofu:format:check:
extends: .tofu
stage: test
script:
- *check
- tofu --version
- tofu init -backend=false
- tofu fmt -recursive -check
allow_failure: true
only:
- /^v.+$/i
- master
- merge_requests
tofu:plan:
extends: .tofu
stage: build
script:
- *check
- tofu init
- |
if [ "${DISABLE_TOFU_REFRESH_STATE}" != "true" ]; then
tofu apply -refresh-only -auto-approve
fi
- tofu plan -out=main.tfplan
artifacts:
name: plan
paths:
- "${CONFIG_FOLDER_PATH}/main.tfplan"
only:
- /^v.+$/i
- master
- merge_requests
except:
- branches
tofu:apply:
extends: .tofu
stage: deploy
dependencies:
- tofu:plan
script:
- *check
- tofu init
- tofu apply -input=false main.tfplan
when: manual
environment:
name: production
only:
- /^v.+$/i
except:
- branches