Skip to content

Updating to meet current lambda config #82

Updating to meet current lambda config

Updating to meet current lambda config #82

Workflow file for this run

name: Checks
on:
- push
jobs:
terraform:
runs-on: ubuntu-latest
env:
AWS_DEFAULT_REGION: us-east-1
steps:
- uses: actions/checkout@master
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.7.4
- id: Init
run: terraform init -no-color
- id: Fmt
run: terraform fmt -check -recursive -no-color
- id: Validate
run: terraform validate -no-color