feat: INFRA-403 edit cloud init to better manage the spark miror #88
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: Run Terraform Validate | |
on: [push] | |
jobs: | |
Deploy: | |
name: Validate the Terraform files | |
runs-on: ubuntu-22.04 | |
container: hashicorp/terraform:0.14.9 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Initialize the terraform modules | |
run: terraform init | |
- name: Validate the terraform files | |
run: terraform validate |