This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
Update ip-address.tf #27
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: ci | |
permissions: | |
contents: read | |
on: | |
push: | |
jobs: | |
job: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
- name: terraform validate - azure-aks | |
run: | | |
cd resources/terraform/azure-aks-existing | |
terraform init -backend=false | |
terraform validate | |
- name: terraform validate - azure-blob | |
run: | | |
cd resources/terraform/azure-blob | |
terraform init -backend=false | |
terraform validate | |
- name: terraform validate - azure-mysql | |
run: | | |
cd resources/terraform/azure-mysql | |
terraform init -backend=false | |
terraform validate |