From a32eebfd251604f0cd552ef2675a6275aa62d4ea Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Mon, 27 Jul 2015 13:36:17 +0200 Subject: [PATCH] [Vagrantfile] set the hostname to 'terraform' --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 3017ff58c7..2591937292 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -42,6 +42,7 @@ SCRIPT Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "chef/ubuntu-12.04" + config.vm.hostname = "terraform" config.vm.provision "shell", inline: $script, privileged: false config.vm.synced_folder '.', '/opt/gopath/src/github.com/hashicorp/terraform'