Skip to content

authn: Support IdPs that backdate their "iat" claim in id tokens #46

authn: Support IdPs that backdate their "iat" claim in id tokens

authn: Support IdPs that backdate their "iat" claim in id tokens #46

Workflow file for this run

name: terraform lint
on:
push:
branches:
- '**'
tags-ignore:
- '**'
paths:
- '**.tf'
- '**.tfvars'
- '**.tf.json'
- '**.tfvars.json'
# Manually triggered using GitHub's UI
workflow_dispatch:
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: scripts/terraform-fmt -check
validate:
name: validate ${{matrix.env}}
strategy:
matrix:
env:
- env/production
- env/testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: terraform init -backend=false
working-directory: ${{matrix.env}}
- run: terraform validate
working-directory: ${{matrix.env}}