Vault pass is get with vault_password_file var

This commit is contained in:
Jeremy Gardais 2018-03-20 09:55:33 +01:00
parent 1d9bb7279b
commit b977293d2c
1 changed files with 5 additions and 4 deletions

9
zshrc
View File

@ -306,13 +306,14 @@ function tase() {
# DebOps {{{ # DebOps {{{
## Apply all config to all hosts ## Apply all config to all hosts
alias deal="debops --ask-vault-pass" alias deal="debops"
## Limit to a define host/group ## Limit to a define host/group
alias deho="debops --ask-vault-pass -l ${ANS_HOST}" function deho() {
debops -l "${ANS_HOST}"
}
## Limit to a define host/group and to a role ## Limit to a define host/group and to a role
function dero() { function dero() {
debops --ask-vault-pass -l "${ANS_HOST}" -t role::"${1}" debops -l "${ANS_HOST}" -t role::"${1}"
} }
# }}} # }}}