1
Fork 0
adguardhome/justfile

17 lines
305 B
Makefile
Raw Normal View History

2024-01-08 19:57:19 +00:00
# Run terraform with required environment
terraform +ARGS:
#!/usr/bin/env bash
# Load secrets from env file (if it exists)
set -a
source ./.env || true
set +a
cd src/
terraform {{ ARGS }}
terraform-lint:
just terraform validate
just terraform fmt -check -recursive