Skip to content

Update README.md

Update README.md #102

Workflow file for this run

name: Terraform CI
on: push
jobs:
validate:
name: Validate
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.0.10
# note: we can only validate the example atm. see https://github.com/hashicorp/terraform/issues/28490
- run: terraform init -backend=false
working-directory: examples/basic-aws-integration
- run: terraform validate
working-directory: examples/basic-aws-integration
- run: terraform fmt -recursive -check