class Envirobly::ContainerShell

def with_private_key

def with_private_key
  Tempfile.create do |file|
    file.write connect_data.fetch("instance").fetch("private_key")
    file.flush
    @private_key_path = file.path
    yield
  end
end