Coder Social home page Coder Social logo

terraform-aliases's Introduction

terraform-aliases

This repository contains a script to generate hundreds of convenient terraform aliases programmatically.

NOTE: The foundation of this repository is based on the amazing work done in kubectl-aliases project by @ahmetb.

Examples

Some of the generated aliases are:

alias tf='terraform'
alias tfa='terraform apply'
alias tfc='terraform console'
alias tfd='terraform destroy'
alias tff='terraform fmt'
alias tfg='terraform graph'
alias tfim='terraform import'
alias tfin='terraform init'
...

See the full list.

Installation

You can directly download the .terraform_aliases file and save it in your $HOME directory, then edit your .bashrc/.zshrc file with:

[ -f ~/.terraform_aliases ] && source ~/.terraform_aliases

Print the full command before running it: Add this to your .bashrc or .zshrc file:

function terraform() { echo "+ terraform $@"; command terraform $@; }

Terragrunt aliases

You can directly download the .terragrunt_aliases file and save it in your $HOME directory, then edit your .bashrc/.zshrc file with:

[ -f ~/.terragrunt_aliases ] && source ~/.terragrunt_aliases

Print the full command before running it: Add this to your .bashrc or .zshrc file:

function terragrunt() { echo "+ terragrunt $@"; command terragrunt $@; }

FAQ

Does this not slow down my shell start up? Sourcing the file that contains ~500 aliases takes about 30-45 milliseconds in my shell (zsh). I don't think it's a big deal for me. Measure it with echo $(($(date +%s%N)/1000000)) command yourself in your .bashrc/.zshrc.

Authors

terraform-aliases's People

Contributors

zer0beat avatar nitisdev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.