HashiTalks 2024 Mastering Terraform Testing, a Layered Approach to Testing Complex Infrastructure

rw-book-cover

Full Document

Readwise/Full Document Contents/HashiTalks 2024 Mastering Terraform Testing, a Layered Approach to Testing Complex Infrastructure.md

Highlights

jobs: test: strategy: fail-fast: false matrix: location: ["swedencentral", "westeurope", "northeurope"] version: ["2.0.0", "3.0.0", "3.1.0"] runs-on: ubuntu-latest steps: - name: Azure login uses: azure/login@v1 - uses: actions/checkout@v4 - run: | sed 's/{{VERSION}}/matrix.version/g;s/LOCATION/{{ matrix.location }}/g' \ templates/main.tftest.hcl.template > tests/main.tftest.hcl - uses: hashicorp/setup-terraform@v2 with: terraform_wrapper: false - run: terraform init env: TF_TOKEN_app_terraform_io: ${{ secrets.TF_TOKEN }} - run: terraform test ([View Highlight] (https://read.readwise.io/read/01hrx6p52djmmyt1733tx4emag))