File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -27,18 +27,18 @@ jobs:
27
27
28
28
- name : Terraform Format
29
29
id : fmt
30
- run : cd azure && terraform fmt
30
+ run : terraform fmt
31
31
32
32
- name : Terraform init
33
33
id : init
34
- run : cd azure && terraform init
34
+ run : terraform init
35
35
36
36
- name : Terraform validate
37
37
id : validate
38
- run : cd azure && terraform validate
38
+ run : terraform validate
39
39
40
40
- name : plan
41
- run : cd azure && terraform plan
41
+ run : terraform plan
42
42
continue-on-error : true
43
43
44
44
- name : Terraform Plan Status
47
47
48
48
- name : Terraform Apply
49
49
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
You can’t perform that action at this time.
0 commit comments