Add example for sensitive option

This commit is contained in:
Chris Roberts 2018-01-16 16:04:32 -08:00
parent f2f8bc2db5
commit 3fc293d621
1 changed files with 4 additions and 0 deletions

View File

@ -25,3 +25,7 @@ You should only manually set this if auto-detection fails.
`config.vagrant.sensitive` - (string, array) - Value or list of values that `config.vagrant.sensitive` - (string, array) - Value or list of values that
should not be displayed in Vagrant's output. Value(s) will be removed from should not be displayed in Vagrant's output. Value(s) will be removed from
Vagrant's normal UI output as well as logger output. Vagrant's normal UI output as well as logger output.
```ruby
config.vagrant.sensitive = ["MySecretPassword", ENV["MY_TOKEN"]]
```