feat(google_permissions): Allow roles/datastore.user for folder, nonp… #2952
Workflow file for this run
This file contains hidden or 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 | |
| - pull_request | |
| permissions: {} | |
| jobs: | |
| matrixify: | |
| name: Matrixify | |
| outputs: | |
| matrix: ${{ steps.search.outputs.matrix }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Get Changed Terraform directories | |
| id: search | |
| uses: mozilla/tf-actions/matrixify@ddd76d971c53359fd7c89099197a6cc26adc72b8 | |
| with: | |
| ignore_dir: "**/example**" | |
| - name: Outputs | |
| run: echo "${OUTPUTS_MATRIX}" | |
| env: | |
| OUTPUTS_MATRIX: ${{ steps.search.outputs.matrix }} | |
| terraform-ci: | |
| name: Terraform CI on "${{ matrix.directory }}" | |
| if: ${{ fromJSON(needs.matrixify.outputs.matrix).include[0] }} | |
| needs: matrixify | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{fromJson(needs.matrixify.outputs.matrix)}} | |
| steps: | |
| - name: Install terraform | |
| uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd #v3 | |
| with: | |
| terraform_wrapper: false | |
| - id: terraform-checks | |
| name: Terraform Checks | |
| uses: mozilla/tf-actions/ci@4c2eeab2ff55a389cd171aa90b1c64c345ec8af7 #v0.0.4 | |
| with: | |
| readme_check: "true" | |
| tfpath: ${{ matrix.directory }} |