IAC/Makefile

17 lines
304 B
Makefile
Raw Normal View History

2025-01-16 18:38:54 +00:00
SHELL := /bin/bash
.SILENT: up clear fmt init apply
.PHONY: up clear fmt init apply
all: up
clear:
clear
fmt:
terraform fmt -recursive .
init:
terraform init -upgrade
apply:
terraform apply \
-target module.traefik \
-target module.headscale \
-target module.portainer
up: clear fmt init apply