-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkflows.tm.hcl
83 lines (72 loc) · 2.13 KB
/
workflows.tm.hcl
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
script "init" {
name = "Terraform Init"
description = "Download the required provider plugins and modules and set up the backend"
job {
commands = [
["terraform", "init", "-lock-timeout=5m"],
]
}
}
script "preview" {
name = "Terraform Deployment Preview"
description = "Create a preview of Terraform changes and synchronize it to Terramate Cloud"
job {
commands = [
["terraform", "validate"],
["terraform", "plan", "-out", "out.tfplan", "-detailed-exitcode", "-lock=false", {
sync_preview = true
terraform_plan_file = "out.tfplan"
}],
]
}
}
script "terraform" "render" {
name = "Terraform Show Plan"
description = "Render a Terraform plan"
job {
commands = [
["echo", "Stack: `${terramate.stack.path.absolute}`"],
["echo", "```terraform"],
["terraform", "show", "-no-color", "out.tfplan"],
["echo", "```"],
]
}
}
script "deploy" {
name = "Terraform Deployment"
description = "Run a full Terraform deployment cycle and synchronize the result to Terramate Cloud"
job {
commands = [
["terraform", "validate"],
["terraform", "plan", "-out", "out.tfplan", "-lock=false"],
["terraform", "apply", "-input=false", "-auto-approve", "-lock-timeout=5m", "out.tfplan", {
sync_deployment = true
terraform_plan_file = "out.tfplan"
}],
]
}
}
script "drift" "detect" {
name = "Terraform Drift Check"
description = "Detect drifts in Terraform configuration and synchronize it to Terramate Cloud"
job {
commands = [
["terraform", "plan", "-out", "out.tfplan", "-detailed-exitcode", "-lock=false", {
sync_drift_status = true
terraform_plan_file = "out.tfplan"
}],
]
}
}
script "drift" "reconcile" {
name = "Terraform Drift Reconciliation"
description = "Reconcile drifts in all changed stacks"
job {
commands = [
["terraform", "apply", "-input=false", "-auto-approve", "-lock-timeout=5m", "drift.tfplan", {
sync_deployment = true
terraform_plan_file = "drift.tfplan"
}],
]
}
}