Skip to content

run all steps on a single runner #8

run all steps on a single runner

run all steps on a single runner #8

Workflow file for this run

name: IaC Main
concurrency:
group: iac
cancel-in-progress: true
on:
push:
permissions:
id-token: write
contents: read
env:
TF_VERSION: '1.6.2'
TG_VERSION: '0.55.15'
AWS_REGION: us-east-1
jobs:
verify:
if: github.ref != 'refs/heads/main'
strategy:
matrix:
environment: [stage, production]
uses: ./.github/workflows/iac_verify.yaml
with:
tf_version: 1.6.2
tg_version: 0.55.15
aws_region: us-east-1
environment: ${{ matrix.environment }}
secrets: inherit
apply:
if: github.ref == 'refs/heads/main'
strategy:
matrix:
environment: [stage]
uses: ./.github/workflows/iac_apply.yaml
with:
tf_version: 1.6.2
tg_version: 0.55.15
aws_region: us-east-1
environment: ${{ matrix.environment }}
secrets: inherit