Hello

This works for me:


Vagrant.configure("2") do |config|

  config.vm.box = "hashicorp/precise64"


  (1..2).each do |i|

    config.vm.define vm_name = "dc1-web0%01d" % i do |web|

      puts vm_name

      web.vm.hostname = "#{vm_name}"

    end

  end

end


Alvaro

On Wed, Jul 26, 2017 at 6:41 PM, Rui Lopes <[email protected]>
wrote:

> 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
> <https://groups.google.com/d/msgid/vagrant-up/43ee4ed4-0c2e-407b-ad1f-be29fe37ee0e%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Alvaro

-- 
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/CAHqq0ewoP7Jaify%2B2mv18%2B6RNuufic0c%3D6vZEYc3mAAkCyywMA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to