Is there a way to get server1 and server2 from within a config.vm.define block?
For example, how can I do it in the following Vagrantfile? config.vm.define "server1" do |config| puts TODO-what-variable-will-get-me-server1? end config.vm.define "server2" do |config| puts TODO-what-variable-will-get-me-server1? end Do I really need to use a temporary variable? e.g. something like: node1_name = 'server1' config.vm.define node1_name do |config| puts node1_name end node2_name = 'server2' config.vm.define node2_name do |config| puts node2_name end Thanks! -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/43ee4ed4-0c2e-407b-ad1f-be29fe37ee0e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
