16 lines
375 B
YAML
16 lines
375 B
YAML
version: 3
|
|
|
|
env: { TF: terraform -chdir=terraform }
|
|
silent: true
|
|
|
|
tasks:
|
|
tf/init: $TF init -backend-config=s3.tfbackend
|
|
tf/plan: $TF plan
|
|
tf/destroy: $TF destroy
|
|
tf/format: $TF fmt -recursive
|
|
tf/apply:
|
|
- $TF apply
|
|
- $TF output -json > terraform.secrets
|
|
|
|
action: act -W .gitea/workflows --container-architecture linux/amd64
|
|
dev: bundle exec jekyll serve |