19 lines
325 B
YAML
19 lines
325 B
YAML
name: "Terraform CI/CD"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- terraform/**
|
|
|
|
jobs:
|
|
terraform:
|
|
name: "Terraform Infrastructure Change Management"
|
|
runs-on: ssot-runner
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
# We keep Terraform files in the terraform directory.
|
|
working-directory: ./terraform
|