diff --git a/.bashrc.d/terraform b/.bashrc.d/terraform index fb12c1b14e97828057bad5af2c164f952cc5f8a5..70ebaee1c38aa340d1f8fda1e818b1acf3be8198 100644 --- a/.bashrc.d/terraform +++ b/.bashrc.d/terraform @@ -3,7 +3,9 @@ export TF_CLI=tofu export TF_DEBUG=1 -alias tfa='tf apply tfplan && tf apply -auto-approve -refresh-only' +alias tfa='tf apply tfplan' alias tfaa='tf apply -auto-approve' +alias tfar='tf apply tfplan && tf plan -out tfplan -refresh-only && tf apply tfplan' alias tfp='tf init -backend=false && tf plan -out tfplan' +alias tfr='tf apply -auto-approve -refresh-only' alias tfvf='tf init -backend=false && tf validate && tf fmt -diff'