Fix incorrect for_each for azurerm_role_assignment.network_contributor and data.azurerm_user_assigned_identity.cluster_identity
#707
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: E2E Test | |
| on: | |
| pull_request: | |
| types: [ 'opened', 'synchronize' ] | |
| paths: | |
| - '.github/**' | |
| - '**.go' | |
| - '**.tf' | |
| - '.github/workflows/**' | |
| - '**.md' | |
| - '**/go.mod' | |
| jobs: | |
| check: | |
| timeout-minutes: 720 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checking for Fork | |
| shell: pwsh | |
| run: | | |
| $isFork = "${{ github.event.pull_request.head.repo.fork }}" | |
| if($isFork -eq "true") { | |
| echo "### WARNING: This workflow is disabled for forked repositories. Please follow the [release branch process](https://azure.github.io/Azure-Verified-Modules/contributing/terraform/terraform-contribution-flow/#5-create-a-pull-request-to-the-upstream-repository) if end to end tests are required." >> $env:GITHUB_STEP_SUMMARY | |
| } | |
| run-e2e-tests: | |
| if: github.event.pull_request.head.repo.fork == false | |
| uses: Azure/tfmod-scaffold/.github/workflows/tfvm_e2e.yaml@main | |
| name: end to end | |
| secrets: inherit | |
| permissions: | |
| id-token: write | |
| contents: read |