Skip to content

Commit

Permalink
add opentofu aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
ecarlson94 committed Feb 16, 2024
1 parent 9da1177 commit af75851
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions modules/home/zsh/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,20 @@ in {
tft = "terraform taint";
tfv = "terraform version";

# OpenTofu
otfa = "tofu apply";
otfaa = "tofu apply -auto-approve";
otfd = "tofu destroy";
otfda = "tofu destroy -auto-approve";
otfi = "tofu init";
otfp = "tofu plan";
otfr = "tofu refresh";
otfs = "tofu show";
otfsl = "tofu state list";
otfsr = "tofu state remove";
otft = "tofu taint";
otfv = "tofu version";

# Terragrunt
tga = "terragrunt apply";
tgaa = "terragrunt apply -auto-approve";
Expand Down

0 comments on commit af75851

Please sign in to comment.