|
|
|
@ -4,7 +4,7 @@ function tf_prompt_info() { |
|
|
|
# check if in terraform dir and file exists |
|
|
|
# check if in terraform dir and file exists |
|
|
|
[[ -d "${TF_DATA_DIR:-.terraform}" && -r "${TF_DATA_DIR:-.terraform}/environment" ]] || return |
|
|
|
[[ -d "${TF_DATA_DIR:-.terraform}" && -r "${TF_DATA_DIR:-.terraform}/environment" ]] || return |
|
|
|
|
|
|
|
|
|
|
|
local workspace="$(< "${TF_DATA_DIR:-.terraform}/environment")" |
|
|
|
local workspace="$(<"${TF_DATA_DIR:-.terraform}/environment")" |
|
|
|
echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}" |
|
|
|
echo "${ZSH_THEME_TF_PROMPT_PREFIX-[}${workspace:gs/%/%%}${ZSH_THEME_TF_PROMPT_SUFFIX-]}" |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -14,11 +14,11 @@ function tf_version_prompt_info() { |
|
|
|
echo "${ZSH_THEME_TF_VERSION_PROMPT_PREFIX-[}${terraform_version:gs/%/%%}${ZSH_THEME_TF_VERSION_PROMPT_SUFFIX-]}" |
|
|
|
echo "${ZSH_THEME_TF_VERSION_PROMPT_PREFIX-[}${terraform_version:gs/%/%%}${ZSH_THEME_TF_VERSION_PROMPT_SUFFIX-]}" |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
alias tf='terraform' |
|
|
|
alias tf='terraform' |
|
|
|
alias tfa='terraform apply' |
|
|
|
alias tfa='terraform apply' |
|
|
|
alias tfa!='terraform apply -auto-approve' |
|
|
|
alias tfa!='terraform apply -auto-approve' |
|
|
|
alias tfap='terraform apply -parallelism=1' |
|
|
|
alias tfap='terraform apply -parallelism=1' |
|
|
|
|
|
|
|
alias tfapp='terraform apply tfplan' |
|
|
|
alias tfc='terraform console' |
|
|
|
alias tfc='terraform console' |
|
|
|
alias tfd='terraform destroy' |
|
|
|
alias tfd='terraform destroy' |
|
|
|
alias tfd!='terraform destroy -auto-approve' |
|
|
|
alias tfd!='terraform destroy -auto-approve' |
|
|
|
@ -31,6 +31,7 @@ alias tfiu='terraform init -upgrade' |
|
|
|
alias tfiur='terraform init -upgrade -reconfigure' |
|
|
|
alias tfiur='terraform init -upgrade -reconfigure' |
|
|
|
alias tfo='terraform output' |
|
|
|
alias tfo='terraform output' |
|
|
|
alias tfp='terraform plan' |
|
|
|
alias tfp='terraform plan' |
|
|
|
|
|
|
|
alias tfpo='terraform plan -out tfplan' |
|
|
|
alias tfv='terraform validate' |
|
|
|
alias tfv='terraform validate' |
|
|
|
alias tfs='terraform state' |
|
|
|
alias tfs='terraform state' |
|
|
|
alias tft='terraform test' |
|
|
|
alias tft='terraform test' |
|
|
|
|