sky-lattice/customers/acme/.github/workflows/terraform.yml
VG 611ad214fe Initial Sky Lattice scaffold: blueprint, platformctl, and docs.
Encode intent/decision/plan workflow for Snowflake platform delivery so engagements share a durable recipe instead of one-off LLM chats.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-15 01:48:36 -04:00

27 lines
765 B
YAML

name: sky-lattice-plan-apply
on:
pull_request:
push:
branches: [main, master]
permissions:
contents: read
jobs:
terraform:
runs-on: ubuntu-latest
defaults:
run:
working-directory: terraform
steps:
- uses: actions/checkout@v4
- uses: hashicorp/setup-terraform@v3
- name: Terraform fmt
run: terraform fmt -check -recursive || true
- name: Terraform init
run: terraform init -backend=false
- name: Terraform validate
run: terraform validate || true
- name: Reminder
run: |
echo "Wire Snowflake credentials and a remote backend before real apply."
echo "platformctl plan generates planned object graph; terraform apply needs provider config."