Reputation: 20856
I'm trying to run a existing Vagrant scripts and notice the below lines.
In what language the Vagrant scripts are written, Is there a specific official documentation about these scripts?
machines = {
"dev" => { :ip => "192.168.22.181", :mem => 2048 },
"prod" => { :ip => "192.168.33.182", :mem => 2048 },
"ops" => { :ip => "192.168.33.183", :mem => 2048 },
}
Upvotes: 0
Views: 719
Reputation: 75629
Vagrant is written in Ruby and so are its files like Vagrantfile
.
Upvotes: 1