feat: add depends_on service principal in role assignments #157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Terraform CI | |
on: | |
push: | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
validate: | |
name: Validate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: ^1.1 | |
- run: terraform init | |
- run: terraform validate | |
- run: terraform fmt -recursive -check |