mirror of
https://github.com/nikdoof/dotfiles.git
synced 2026-01-30 10:58:14 +00:00
11 lines
297 B
Bash
11 lines
297 B
Bash
# shellcheck shell=bash
|
|
# Terraform helpers
|
|
|
|
if [ -x "$(command -v terraform)" ]; then
|
|
# Define a shared cache location for Terraform plugins
|
|
export TF_PLUGIN_CACHE_DIR="${XDG_CACHE_HOME}/terraform-plugins"
|
|
|
|
alias tfplan="terraform plan -out=tfplan.binary"
|
|
alias tf="terraform"
|
|
fi
|