Class: VagrantPlugins::OCI::Action::ReadSSHInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/vagrant-oci/action/read_ssh_info.rb

Overview

This action reads the SSH info for the machine and puts it into the ‘:machine_ssh_info` key in the environment.

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ ReadSSHInfo

Returns a new instance of ReadSSHInfo.



9
10
11
12
# File 'lib/vagrant-oci/action/read_ssh_info.rb', line 9

def initialize(app, env)
  @app    = app
  @logger = Log4r::Logger.new("vagrant_oci::action::read_ssh_info")
end

Instance Method Details

#call(env) ⇒ Object



14
15
16
17
18
# File 'lib/vagrant-oci/action/read_ssh_info.rb', line 14

def call(env)
  env[:machine_ssh_info] = read_ssh_info(env)

  @app.call(env)
end

#read_ssh_info(env) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/vagrant-oci/action/read_ssh_info.rb', line 20

def read_ssh_info(env)
  machine = env[:machine]
  return nil if machine.id.nil?

  server_ocid = env[:machine].id
  provider_config = env[:machine].provider_config
  vnic_attachments_data = env[:oci_compute].list_vnic_attachments(provider_config.server_compartment_id, :instance_id => server_ocid).data.map(&:to_hash)
  vnic_id = vnic_attachments_data.first[:vnicId]
  vnic_data = env[:oci_network].get_vnic(vnic_id).data.to_hash
  private_ip = vnic_data[:privateIp]
  public_ip = vnic_data[:publicIp]
  ip_addr = provider_config.use_private_network ? private_ip : public_ip || private_ip

  ssh_info = {
    :host => ip_addr,
    :port => env[:machine].config.ssh.port || 22
  }
  env[:machine_ssh_info] = ssh_info

  # Return SSH network info
  return ssh_info
end