From 7bea959b7f600a27349fb7f541edeac77f19dc6c Mon Sep 17 00:00:00 2001 From: Chris Cowley Date: Wed, 16 Apr 2025 09:45:56 +0000 Subject: [PATCH] Switch to tofu --- 10-pre-k8s/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/10-pre-k8s/Makefile b/10-pre-k8s/Makefile index beec38d..920773f 100644 --- a/10-pre-k8s/Makefile +++ b/10-pre-k8s/Makefile @@ -1,11 +1,11 @@ init: - terraform init + tofu init plan: - terraform plan -out tfplan + tofu plan -out tfplan apply:plan - terraform apply tfplan + tofu apply tfplan refresh:plan - terraform apply tfplan -refresh-only + tofu apply tfplan -refresh-only