Skip to content

Commit

Permalink
Update terraform.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanmanna134 authored Sep 20, 2024
1 parent c0eba35 commit e313b32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:

- name: Terraform Format
id: fmt
run: cd azure && terraform fmt
run: terraform fmt

- name: Terraform init
id: init
run: cd azure && terraform init
run: terraform init

- name: Terraform validate
id: validate
run: cd azure && terraform validate
run: terraform validate

- name: plan
run: cd azure && terraform plan
run: terraform plan
continue-on-error: true

- name: Terraform Plan Status
Expand All @@ -47,4 +47,4 @@ jobs:

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

0 comments on commit e313b32

Please sign in to comment.