Skip to content

Added more variables to manage asg healthchecks #33

Added more variables to manage asg healthchecks

Added more variables to manage asg healthchecks #33

Workflow file for this run

name: Validate terraform
on:
push:
branches:
- '**'
# https://github.com/hashicorp/setup-terraform
jobs:
tf:
name: terraform checks modules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.5.5
- run: |
terraform fmt -check -recursive ./modules
- name: Terraform Init
id: init
run: |
cd example
terraform init
- name: Terraform Validate
id: validate
run: |
cd example
terraform validate -no-color