-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (44 loc) · 1.12 KB
/
main.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
name: 'Deployment terraform plan and apply'
on:
push:
branches:
- main
- after-hours
permissions:
contents: read
jobs:
terraform:
name: Terraform fmt, init, plan and apply
runs-on: ubuntu-latest
environment: production
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform Format
id: fmt
run: terraform fmt
working-directory: terraform
continue-on-error: false
- name: Terraform Init
id: init
working-directory: terraform
run: terraform init
- name: Terraform Validate
id: validate
working-directory: terraform
run: terraform validate -no-color
- name: Terraform Plan
id: plan
working-directory: terraform
run: terraform plan -no-color
continue-on-error: false
- name: Terraform Apply
working-directory: terraform
run: terraform apply -auto-approve -input=false