user1050619
user1050619

Reputation: 20856

Vagrant scripts language

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

Answers (1)

Marcin Orlowski
Marcin Orlowski

Reputation: 75629

Vagrant is written in Ruby and so are its files like Vagrantfile.

Upvotes: 1

Related Questions