-
-
Save kyxap1/77f6336b13033fdbd68597f7cc9bc0e8 to your computer and use it in GitHub Desktop.
terraform bash completion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
_terraform() { | |
local cur prev words cword opts | |
_get_comp_words_by_ref -n : cur prev words cword | |
COMPREPLY=() | |
opts="" | |
if [[ ${cur} == -* ]] ; then | |
compopt -o nospace | |
fi | |
if [[ ${cword} -eq 1 ]] ; then | |
if [[ ${cur} == -* ]] ; then | |
opts="--help --version" | |
else | |
opts="$(terraform --help | grep -vE '(usage|Available|^$)' | awk '{print $1}')" | |
fi | |
fi | |
if [[ ${cword} -gt 1 ]] ; then | |
if [[ ${cword} -eq 2 && ${prev} == '--help' ]] ; then | |
opts="$(terraform --help | grep -vE '(usage|Available|^$)' | awk '{print $1}')" | |
else | |
opts="$(terraform --help "${words[1]}" | grep '^ *-[a-z]' | awk '{print $1}' | awk -F '=' '{if ($0 ~ /=/) {print $1"="} else {print $1" "}}')" | |
fi | |
fi | |
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) | |
return 0 | |
} | |
complete -F _terraform terraform |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment