{"id":24716532,"url":"https://github.com/pgebert/powershell-terraform-aliases","last_synced_at":"2026-05-05T04:04:18.422Z","repository":{"id":207712472,"uuid":"719485674","full_name":"pgebert/powershell-terraform-aliases","owner":"pgebert","description":":octocat: Oh My Zsh's Terraform aliases for PowerShell.","archived":false,"fork":false,"pushed_at":"2023-11-20T18:37:31.000Z","size":23,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-07T02:54:18.634Z","etag":null,"topics":["alias","oh-my-posh","oh-my-zsh","powershell","terminal","terraform","windows"],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/terraform-aliases","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pgebert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2023-11-16T09:15:30.000Z","updated_at":"2024-09-26T21:33:14.000Z","dependencies_parsed_at":"2025-06-09T18:06:15.610Z","dependency_job_id":"c9724d8a-a8cd-4439-a34e-8d1e00cc0abe","html_url":"https://github.com/pgebert/powershell-terraform-aliases","commit_stats":null,"previous_names":["pgebert/powershell-terraform-aliases"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/pgebert/powershell-terraform-aliases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-terraform-aliases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-terraform-aliases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-terraform-aliases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-terraform-aliases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgebert","download_url":"https://codeload.github.com/pgebert/powershell-terraform-aliases/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-terraform-aliases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274770486,"owners_count":25346211,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-12T02:00:09.324Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["alias","oh-my-posh","oh-my-zsh","powershell","terminal","terraform","windows"],"created_at":"2025-01-27T09:12:58.736Z","updated_at":"2026-05-05T04:04:13.382Z","avatar_url":"https://github.com/pgebert.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform aliases for PowerShell\n[![license](https://img.shields.io/github/license/pgebert/powershell-terraform-aliases.svg?style=flat-square)](./LICENSE)\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/terraform-aliases.svg?style=flat-square)](https://www.powershellgallery.com/packages/terraform-aliases/)\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/terraform-aliases.svg?style=flat-square)](https://www.powershellgallery.com/packages/terraform-aliases/)\n\nA [PowerShell](https://microsoft.com/powershell) module that provides partial **[Terraform](https://www.terraform.io/)** aliases from [Oh My Zsh](https://github.com/robbyrussell/oh-my-zsh)'s [terraform plugin](https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/terraform).\n\n\u003e ℹ️ This module will replace some built-in PowerShell aliases with our Terraform aliases to **prevent** conflicts.\n\n## 💻 Prerequisite\n\n✔ Installed [terraform-cli](https://developer.hashicorp.com/terraform/install)\n\n\n## ⚙️ Installation\n\nInstall from [PowerShell Gallery](https://www.powershellgallery.com/packages/terraform-aliases/) using the following powershell command:\n\n```powershell\nInstall-Module terraform-aliases -Scope CurrentUser -AllowClobber\n```\n\nAdd below command into your `PowerShell profile` file:\n\n```powershell\nImport-Module terraform-aliases -DisableNameChecking\n```\n\nRestart your powershell and now you can use terraform aliases. 🚀\n\n## 👉 Additional notes\n\n\nIf you haven't allowed script execution policy, set your script execution policy to `RemoteSigned` or `Unrestricted`.\n\n```powershell\nSet-ExecutionPolicy RemoteSigned -Scope CurrentUser\n```\n\nIf you don't have PowerShell profile yet, create it with below command!\n\n```powershell\nNew-Item -ItemType File $profile\n```\n\n## 🚀 Supported Aliases\n\nThe following aliases are currently implemented:\n\n| Alias   | Command                           |\n|---------|-----------------------------------|\n| `tf`    | `terraform`                       |\n| `tfa`   | `terraform apply`                 |\n| `tfc`   | `terraform console`               |\n| `tfd`   | `terraform destroy`               |\n| `tff`   | `terraform fmt`                   |\n| `tfg`   | `terraform graph`                 |\n| `tfim`  | `terraform import`                |\n| `tfi`   | `terraform init`                  |\n| `tfo`   | `terraform output`                |\n| `tfp`   | `terraform plan`                  |\n| `tfpr`  | `terraform providers`             |\n| `tfr`   | `terraform refresh`               |\n| `tfsh`  | `terraform show`                  |\n| `tft`   | `terraform taint`                 |\n| `tfut`  | `terraform untaint`               |\n| `tfv`   | `terraform validate`              |\n| `tfw`   | `terraform workspace`             |\n| `tfs`   | `terraform state`                 |\n| `tffu`  | `terraform force-unlock`          |\n| `tfwst` | `terraform workspace select`      |\n| `tfwsw` | `terraform workspace show`        |\n| `tfssw` | `terraform state show`            |\n| `tfwde` | `terraform workspace delete`      |\n| `tfwls` | `terraform workspace list`        |\n| `tfsls` | `terraform state list`            |\n| `tfwnw` | `terraform workspace new`         |\n| `tfsmv` | `terraform state mv`              |\n| `tfspl` | `terraform state pull`            |\n| `tfsph` | `terraform state push`            |\n| `tfsrm` | `terraform state rm`              |\n| `tfay`  | `terraform apply -auto-approve`   |\n| `tfdy`  | `terraform destroy -auto-approve` |\n| `tfinu` | `terraform init -upgrade`         |\n| `tfpde` | `terraform plan --destroy`        |\n\n# Miscellaneous\n\n## 🤝 Contributing\n\nContributions, [issues](https://github.com/pgebert/powershell-terraform-aliases/issues) and feature requests are welcome!\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2023 [pgebert](https://github.com/pgebert).  \nThis project is licensed under [MIT](https://github.com/pgebert/powershell-terraform-aliases/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgebert%2Fpowershell-terraform-aliases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgebert%2Fpowershell-terraform-aliases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgebert%2Fpowershell-terraform-aliases/lists"}