-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 1.02 KB
/
terraform.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
name: "Terraform"
on:
push:
branches:
- main
pull_request:
jobs:
terraform:
name: "Terraform"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.4.2
- name: Terraform Format
id: fmt
run: terraform fmt -check
- name: Terraform Init infra
id: init-infra
working-directory: ./infra
run: terraform init
- name: Terraform Validate infra
id: validate-infra
working-directory: ./infra
run: terraform validate -no-color
- name: Terraform Init localstack-services
id: init-localstack-services
working-directory: ./infra/localstack-services
run: terraform init
- name: Terraform Validate localstack-services
id: validate-localstack-services
working-directory: ./infra/localstack-services
run: terraform validate -no-color