1000 B
1000 B
layout | page_title | sidebar_current | description |
---|---|---|---|
docs | config.vagrant - Vagrantfile | vagrantfile-vagrant | The settings within "config.vagrant" modify the behavior of Vagrant itself. |
Vagrant Settings
Config namespace: config.vagrant
The settings within config.vagrant
modify the behavior of Vagrant
itself.
Available Settings
config.vagrant.host
- This sets the type of host machine that is running
Vagrant. By default this is :detect
, which causes Vagrant to auto-detect
the host. Vagrant needs to know this information in order to perform some
host-specific things, such as preparing NFS folders if they're enabled.
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.
config.vagrant.sensitive = ["MySecretPassword", ENV["MY_TOKEN"]]