From 5b9c6484a149c4530a585fa62c46d2c8c9cab610 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sat, 7 Feb 2026 13:42:10 +0000 Subject: [PATCH] [ci skip] update tf-apply and tf-plan skills to run locally with kubeconfig --- .claude/commands/tf-apply.md | 2 +- .claude/commands/tf-plan.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.claude/commands/tf-apply.md b/.claude/commands/tf-apply.md index 87787f86..63301082 100755 --- a/.claude/commands/tf-apply.md +++ b/.claude/commands/tf-apply.md @@ -3,7 +3,7 @@ Run terraform apply to deploy infrastructure changes. ```bash -terraform apply -target=module.kubernetes_cluster.module. -auto-approve +terraform apply -target=module.kubernetes_cluster.module. -var="kube_config_path=$(pwd)/config" -auto-approve ``` ALWAYS use -target to speed up execution. Monitor the output and report any errors or successful completions. diff --git a/.claude/commands/tf-plan.md b/.claude/commands/tf-plan.md index 02a5d300..b528ccb5 100755 --- a/.claude/commands/tf-plan.md +++ b/.claude/commands/tf-plan.md @@ -3,7 +3,7 @@ Run terraform plan to preview infrastructure changes. ```bash -terraform plan -target=module.kubernetes_cluster.module. +terraform plan -target=module.kubernetes_cluster.module. -var="kube_config_path=$(pwd)/config" ``` ALWAYS use -target to speed up execution. Summarize the planned changes, highlighting any resources being destroyed or recreated.