-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (97 loc) · 2.88 KB
/
terraform-cd.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
110
111
112
113
name: 'Terraform CD'
on:
push:
branches:
- 'main'
paths:
- infrastructure/**
workflow_dispatch:
inputs:
environment:
type: choice
description: 'The environment to deploy to'
required: true
default: dev
options:
- dev
- test
- prod
env:
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.ARM_CLIENT_SECRET }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
ARM_TENANT_ID: ${{ secrets.ARM_TENANT_ID }}
jobs:
plan:
name: Terraform Plan
runs-on: ubuntu-latest
outputs:
status: ${{ steps.plan.outcome }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Terraform Setup
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.6
- name: Terraform Init
working-directory: ./infrastructure
run: terraform init
- name: Terraform Workspace
working-directory: ./infrastructure
run: |
if [ ${{ github.event_name }} = 'workflow_dispatch' ];
then
terraform workspace select ${{ github.event.inputs.environment }}
else
terraform workspace select dev
fi
- name: Terraform Plan
id: plan
working-directory: ./infrastructure
run: terraform plan -input=false -out=tfplan
- name: Upload Terraform Plan
uses: actions/upload-artifact@v3
with:
name: tfplan
path: ./infrastructure/tfplan
apply:
name: Terraform Apply
runs-on: ubuntu-latest
needs: plan
if: ${{ needs.plan.outputs.status }} == 'success'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Download Terraform Plan
uses: actions/download-artifact@v3
with:
name: tfplan
path: ./infrastructure
- name: Azure Login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Terraform Setup
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.1.6
- name: Terraform Init
working-directory: ./infrastructure
run: terraform init
- name: Terraform Workspace
working-directory: ./infrastructure
run: |
if [ ${{ github.event_name }} = 'workflow_dispatch' ];
then
terraform workspace select ${{ github.event.inputs.environment }}
else
terraform workspace select dev
fi
- name: Terraform Apply
working-directory: ./infrastructure
run: terraform apply -input=false tfplan