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.