Adding support for Client IP Rules #447
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Terraform init and validate | |
on: [push, pull_request] | |
env: | |
BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
jobs: | |
tf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: hashicorp/setup-terraform@v2 | |
- name: Terraform build | |
run: make build | |
- name: Terraform fmt | |
run: terraform fmt -check | |
- name: Terraform Init | |
run: terraform init | |
- name: Terraform Validate | |
run: terraform validate -no-color | |
env: | |
TF_CLI_CONFIG_FILE: bin/developer_overrides.tfrc |