name: Terraform K8s Apps Validate on Pull Request on: pull_request: branches: - main paths: - "terraform/k8sapps/**" types: - opened - synchronize - reopened jobs: terraform-validate: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup environment uses: ./.github/actions/setup-env - name: Setup Ansible Environment id: setup_ansible_env uses: ./.github/actions/setup-ansible-env with: project-id: ${{ secrets.BW_PROJECT_ID }} organization-id: ${{ secrets.BW_ORGANIZATION_ID }} access-token: ${{ secrets.BW_ACCESS_TOKEN }} ansible-user: ${{ secrets.ANSIBLE_USER }} host-group: microk8s - name: Setup Terraform Environment uses: ./.github/actions/setup-terraform-env - name: Setup Kubernetes Environment uses: ./.github/actions/setup-k8s-env with: project-id: ${{ secrets.BW_PROJECT_ID }} organization-id: ${{ secrets.BW_ORGANIZATION_ID }} access-token: ${{ secrets.BW_ACCESS_TOKEN }} ansible-user: ${{ secrets.ANSIBLE_USER }} - name: Terraform Init and Validate env: BW_PROJECT_ID: ${{ secrets.BW_PROJECT_ID }} BW_ORGANIZATION_ID: ${{ secrets.BW_ORGANIZATION_ID }} BW_ACCESS_TOKEN: ${{ secrets.BW_ACCESS_TOKEN }} run: | cd terraform/k8sapps sectool -f ../../sectool.json exec terraform init sectool -f ../../sectool.json exec terraform validate sectool -f ../../sectool.json exec terraform fmt -check sectool -f ../../sectool.json exec terraform plan