diff options
author | Michael Nikitochkin <miry.sof@gmail.com> | 2018-01-23 04:19:57 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2018-01-22 19:19:57 -0800 |
commit | e5dae3d33113d854183f908a9d867b03054a21dd (patch) | |
tree | d98f0c60c43114598cd8e939c529cf6f2a21f992 /plugins/terraform | |
parent | 7a0dac8040c591b99ad9d28149dd559a6e332c1e (diff) | |
download | zsh-e5dae3d33113d854183f908a9d867b03054a21dd.tar.gz zsh-e5dae3d33113d854183f908a9d867b03054a21dd.tar.bz2 zsh-e5dae3d33113d854183f908a9d867b03054a21dd.zip |
add -auto-approve flag to terraform apply command (#6558)
Diffstat (limited to 'plugins/terraform')
-rw-r--r-- | plugins/terraform/_terraform | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/terraform/_terraform b/plugins/terraform/_terraform index d67820603..285d83ec7 100644 --- a/plugins/terraform/_terraform +++ b/plugins/terraform/_terraform @@ -20,6 +20,7 @@ _terraform_cmds=( __apply() { _arguments \ + '-auto-approve[Skip interactive approval of plan before applying.]' \ '-backup=[(path) Path to backup the existing state file before modifying. Defaults to the "-state-out" path with ".backup" extension. Set to "-" to disable backup.]' \ '-input=[(true) Ask for input for variables if not directly set.]' \ '-no-color[If specified, output will not contain any color.]' \ |