Skip to content

Commit e313b32

Browse files
Update terraform.yaml
1 parent c0eba35 commit e313b32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

‎.github/workflows/terraform.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ jobs:
2727

2828
- name: Terraform Format
2929
id: fmt
30-
run: cd azure && terraform fmt
30+
run: terraform fmt
3131

3232
- name: Terraform init
3333
id: init
34-
run: cd azure && terraform init
34+
run: terraform init
3535

3636
- name: Terraform validate
3737
id: validate
38-
run: cd azure && terraform validate
38+
run: terraform validate
3939

4040
- name: plan
41-
run: cd azure && terraform plan
41+
run: terraform plan
4242
continue-on-error: true
4343

4444
- name: Terraform Plan Status
@@ -47,4 +47,4 @@ jobs:
4747

4848
- name: Terraform Apply
4949
if: github.ref == 'refs/heads/main' && github.event_name == 'push' && steps.plan.outcome == 'success'
50-
run: cd azure && terraform apply -auto-approve -input=false
50+
run: terraform apply -auto-approve -input=false

0 commit comments

Comments
 (0)