Module: VagrantPlugins::CommandDns::Action

Includes:
Vagrant::Action::Builtin
Defined in:
lib/vagrant-command-dns/action.rb,
lib/vagrant-command-dns/action/host.rb,
lib/vagrant-command-dns/action/get_ip.rb,
lib/vagrant-command-dns/action/route53.rb,
lib/vagrant-command-dns/action/show_ip.rb,
lib/vagrant-command-dns/action/host/create.rb,
lib/vagrant-command-dns/action/host/destroy.rb,
lib/vagrant-command-dns/action/route53/create.rb,
lib/vagrant-command-dns/action/route53/connect.rb,
lib/vagrant-command-dns/action/route53/destroy.rb

Defined Under Namespace

Modules: Host, Route53 Classes: GetIP, ShowIP

Class Method Summary collapse

Class Method Details

.show_ipObject



10
11
12
13
14
15
16
# File 'lib/vagrant-command-dns/action.rb', line 10

def self.show_ip
  Vagrant::Action::Builder.new.tap do |b|
    b.use ConfigValidate
    b.use GetIP
    b.use ShowIP
  end
end