Add Terraform autocomplete

This commit is contained in:
Salt 2021-08-01 19:34:05 -05:00
parent ccbfdf3ec0
commit c396e838ca

View File

@ -94,6 +94,15 @@ if has kubectl; then
;;
esac
fi
if has terraform; then
case "$_baseshell" in
*bash)
complete -C "$(which terraform)" terraform
;;
*)
;;
esac
fi
# Set up go, if we have it
if has go; then