|
| 1 | +name: Plan |
| 2 | + |
| 3 | +on: |
| 4 | + workflow_run: |
| 5 | + workflows: |
| 6 | + - "Plan (pre)" |
| 7 | + types: |
| 8 | + - completed |
| 9 | + workflow_dispatch: |
| 10 | + |
| 11 | +jobs: |
| 12 | + prepare: |
| 13 | + if: (github.event_name == 'workflow_dispatch' && |
| 14 | + github.ref_name == github.event.repository.default_branch) || |
| 15 | + (github.event_name == 'workflow_run' && |
| 16 | + github.event.workflow_run.conclusion == 'success') |
| 17 | + permissions: |
| 18 | + actions: read |
| 19 | + contents: read |
| 20 | + statuses: write |
| 21 | + name: Prepare |
| 22 | + runs-on: ubuntu-latest |
| 23 | + outputs: |
| 24 | + workspaces: ${{ steps.workspaces.outputs.this }} |
| 25 | + repository: ${{ steps.github.outputs.repository }} |
| 26 | + sha: ${{ steps.github.outputs.sha }} |
| 27 | + number: ${{ steps.github.outputs.number }} |
| 28 | + defaults: |
| 29 | + run: |
| 30 | + shell: bash |
| 31 | + steps: |
| 32 | + - name: Find repository and sha to checkout |
| 33 | + id: github |
| 34 | + env: |
| 35 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 36 | + run: | |
| 37 | + if [[ '${{ github.event_name }}' == 'workflow_dispatch' ]]; then |
| 38 | + repository='${{ github.repository }}' |
| 39 | + sha='${{ github.sha }}' |
| 40 | + elif [[ '${{ github.event_name }}' == 'workflow_run' ]]; then |
| 41 | + repository='${{ github.event.workflow_run.head_repository.full_name }}' |
| 42 | + sha='${{ github.event.workflow_run.head_commit.id }}' |
| 43 | + number="$(gh api '/repos/${{ github.repository }}/actions/runs/${{ github.event.workflow_run.id }}' --jq '.pull_requests[0].number')" |
| 44 | + fi |
| 45 | + echo "::set-output name=repository::$repository" |
| 46 | + echo "::set-output name=sha::$sha" |
| 47 | + echo "::set-output name=number::$number" |
| 48 | + - run: sha=${{ steps.github.outputs.sha }} |
| 49 | + - env: |
| 50 | + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
| 51 | + run: gh api 'repos/${{ github.repository }}/statuses/${{ steps.github.outputs.sha }}' -f context='Plan' -f state='pending' -f target_url='${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}' |
| 52 | + - name: Checkout |
| 53 | + uses: actions/checkout@v2 |
| 54 | + with: |
| 55 | + repository: ${{ steps.github.outputs.repository }} |
| 56 | + ref: ${{ steps.github.outputs.sha }} |
| 57 | + - name: Discover workspaces |
| 58 | + id: workspaces |
| 59 | + run: echo "::set-output name=this::$(ls github | jq --raw-input '[.]' | jq -sc add)" |
| 60 | + plan: |
| 61 | + needs: [prepare] |
| 62 | + if: needs.prepare.outputs.workspaces != '' |
| 63 | + permissions: |
| 64 | + contents: read |
| 65 | + strategy: |
| 66 | + fail-fast: false |
| 67 | + matrix: |
| 68 | + workspace: ${{ fromJson(needs.prepare.outputs.workspaces) }} |
| 69 | + name: Plan |
| 70 | + runs-on: ubuntu-latest |
| 71 | + env: |
| 72 | + TF_IN_AUTOMATION: 1 |
| 73 | + TF_INPUT: 0 |
| 74 | + TF_WORKSPACE: ${{ matrix.workspace }} |
| 75 | + AWS_ACCESS_KEY_ID: ${{ secrets.RO_AWS_ACCESS_KEY_ID }} |
| 76 | + AWS_SECRET_ACCESS_KEY: ${{ secrets.RO_AWS_SECRET_ACCESS_KEY }} |
| 77 | + GITHUB_APP_ID: ${{ secrets.RO_GITHUB_APP_ID }} |
| 78 | + GITHUB_APP_INSTALLATION_ID: ${{ secrets[format('RO_GITHUB_APP_INSTALLATION_ID_{0}', matrix.workspace)] }} |
| 79 | + GITHUB_APP_PEM_FILE: ${{ secrets.RO_GITHUB_APP_PEM_FILE }} |
| 80 | + TF_VAR_write_delay_ms: 300 |
| 81 | + defaults: |
| 82 | + run: |
| 83 | + shell: bash |
| 84 | + working-directory: terraform |
| 85 | + steps: |
| 86 | + - name: Checkout |
| 87 | + uses: actions/checkout@v2 |
| 88 | + with: |
| 89 | + repository: ${{ needs.prepare.outputs.repository }} |
| 90 | + ref: ${{ needs.prepare.outputs.sha }} |
| 91 | + - name: Setup terraform |
| 92 | + uses: hashicorp/setup-terraform@3d8debd658c92063839bc97da5c2427100420dec # v1.3.2 |
| 93 | + with: |
| 94 | + terraform_version: 1.1.4 |
| 95 | + - name: Initialize terraform |
| 96 | + run: terraform init |
| 97 | + - name: Check terraform lock |
| 98 | + if: github.event_name == 'workflow_run' |
| 99 | + run: git diff --exit-code .terraform.lock.hcl |
| 100 | + - name: Format terraform |
| 101 | + run: terraform fmt -check |
| 102 | + - name: Validate terraform |
| 103 | + run: terraform validate -no-color |
| 104 | + - name: Retrieve targets from config |
| 105 | + id: target |
| 106 | + run: echo "::set-output name=this::$(jq -r 'split(" ")[:-1] | map("-target=github_\(sub(".json$"; "")).this") | join(" ")' <<< '"'"$(ls | tr '\n' ' ')"'"')" |
| 107 | + working-directory: github/${{ env.TF_WORKSPACE }} |
| 108 | + - name: Plan terraform |
| 109 | + id: plan |
| 110 | + run: terraform plan ${{ steps.target.outputs.this }} -refresh=false -lock=false -out=${{ env.TF_WORKSPACE }}.tfplan -no-color |
| 111 | + - name: Upload terraform plan |
| 112 | + uses: actions/upload-artifact@v2 |
| 113 | + with: |
| 114 | + name: ${{ env.TF_WORKSPACE }}_${{ needs.prepare.outputs.sha }}.tfplan |
| 115 | + path: terraform/${{ env.TF_WORKSPACE }}.tfplan |
| 116 | + if-no-files-found: error |
| 117 | + retention-days: 90 |
| 118 | + comment: |
| 119 | + needs: [prepare, plan] |
| 120 | + if: github.event_name == 'workflow_run' |
| 121 | + permissions: |
| 122 | + contents: read |
| 123 | + pull-requests: write |
| 124 | + name: Comment |
| 125 | + runs-on: ubuntu-latest |
| 126 | + env: |
| 127 | + AWS_ACCESS_KEY_ID: ${{ secrets.RO_AWS_ACCESS_KEY_ID }} |
| 128 | + AWS_SECRET_ACCESS_KEY: ${{ secrets.RO_AWS_SECRET_ACCESS_KEY }} |
| 129 | + defaults: |
| 130 | + run: |
| 131 | + shell: bash |
| 132 | + working-directory: terraform |
| 133 | + steps: |
| 134 | + - name: Checkout |
| 135 | + uses: actions/checkout@v2 |
| 136 | + with: |
| 137 | + repository: ${{ needs.prepare.outputs.repository }} |
| 138 | + ref: ${{ needs.prepare.outputs.sha }} |
| 139 | + - name: Setup terraform |
| 140 | + uses: hashicorp/setup-terraform@3d8debd658c92063839bc97da5c2427100420dec # v1.3.2 |
| 141 | + with: |
| 142 | + terraform_version: 1.1.4 |
| 143 | + terraform_wrapper: false |
| 144 | + - name: Initialize terraform |
| 145 | + run: terraform init |
| 146 | + - name: Download terraform plans |
| 147 | + uses: actions/download-artifact@v2 |
| 148 | + with: |
| 149 | + path: terraform |
| 150 | + - name: Show terraform plans |
| 151 | + run: | |
| 152 | + echo 'COMMENT<<EOF' >> $GITHUB_ENV |
| 153 | + for plan in $(find . -type f -name '*.tfplan'); do |
| 154 | + echo "<details><summary>$(basename "$plan" '.tfplan')</summary>" >> $GITHUB_ENV |
| 155 | + echo '' >> $GITHUB_ENV |
| 156 | + echo '```' >> $GITHUB_ENV |
| 157 | + echo "$(terraform show -no-color "$plan" 2>&1)" >> $GITHUB_ENV |
| 158 | + echo '```' >> $GITHUB_ENV |
| 159 | + echo '' >> $GITHUB_ENV |
| 160 | + echo '</details>' >> $GITHUB_ENV |
| 161 | + done |
| 162 | + echo 'EOF' >> $GITHUB_ENV |
| 163 | + - name: Comment on pull request |
| 164 | + uses: marocchino/sticky-pull-request-comment@39c5b5dc7717447d0cba270cd115037d32d28443 # v2.2.0 |
| 165 | + with: |
| 166 | + number: ${{ needs.prepare.outputs.number }} |
| 167 | + message: | |
| 168 | + Before merge, verify that all the following plans are correct. They will be applied as-is after the merge. |
| 169 | +
|
| 170 | + #### Terraform plans |
| 171 | + ${{ env.COMMENT }} |
0 commit comments