jkavan / terragrunt-oh-my-zsh-plugin

oh-my-zsh completion plugin for Terragrunt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Terragrunt oh-my-zsh plugin

ZSH completion plugin for Terragrunt, a thin wrapper for Terraform that provides extra tools.

Current as of Terraform v1.1.x.

This is based on hanjunlee's terragrunt-oh-my-zsh-plugin, so all credit goes to him, I have just updated the command list to current Terraform/Terragrunt version.

Since that repository hasn't been updated for years and is now archived, I decided to make my own repo instead of forking it since forking has its downsides.

Requirements

Installation

  1. Clone this repository into $ZSH_CUSTOM/plugins (by default ~/.oh-my-zsh/custom/plugins):
git clone https://github.com/jkavan/terragrunt-oh-my-zsh-plugin ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/terragrunt
  1. Add the plugin to the list of plugins for Oh My Zsh to load (inside ~/.zshrc):
plugins=(terragrunt)
  1. Start a new terminal session or reload zsh configs: source ~/.zshrc

Features

  • When you typed terragrunt into your prompt and hit TAB to see available completion options

  • When you typed -target option into your prompt and hit TAB to see available resource list.

$ terragrunt plan -target               # hit TAB
aws_db_instance.baz  aws_iam.bar          aws_iam.foo
...                                     # show resource list
  • Alias terragrunt command as tg.

Expanding ZSH prompt with current Terraform workspace name

If you want to get current Terraform workspace name in your ZSH prompt open your .zsh-theme file and in a chosen place insert:

$FG[045]\
$(tg_prompt_info)\

About

oh-my-zsh completion plugin for Terragrunt

License:MIT License


Languages

Language:Shell 100.0%