From 3fc293d621a62a43d26cdaffc84c46c3a1e3bafa Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Tue, 16 Jan 2018 16:04:32 -0800 Subject: [PATCH] Add example for sensitive option --- website/source/docs/vagrantfile/vagrant_settings.html.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/source/docs/vagrantfile/vagrant_settings.html.md b/website/source/docs/vagrantfile/vagrant_settings.html.md index 460f28fbf..e0a9de414 100644 --- a/website/source/docs/vagrantfile/vagrant_settings.html.md +++ b/website/source/docs/vagrantfile/vagrant_settings.html.md @@ -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 should not be displayed in Vagrant's output. Value(s) will be removed from Vagrant's normal UI output as well as logger output. + +```ruby +config.vagrant.sensitive = ["MySecretPassword", ENV["MY_TOKEN"]] +```