Sha256: a9ad4bf33f00c70f6859da6652fd05032c9215bbd055f006f6c38f235ead6687
Contents?: true
Size: 760 Bytes
Versions: 5
Compression:
Stored size: 760 Bytes
Contents
# frozen_string_literal: true require "chef/provisioning" require "chef/provisioning/vsphere_driver/driver" # The main Chef class for all the Chef code! class Chef # The main Chef module for the Domain Specialized Language module DSL # The main Chef module for the the Recipe in side of Chef's DSL module Recipe # Creates the url object for Chef-Provisioning to leverage. # # @param [Object] driver_options Used from the Chef Provisioning to connect # @param [Object] block TODO def with_vsphere_driver(driver_options, &block) url = ChefProvisioningVsphere::VsphereDriver.canonicalize_url( nil, driver_options )[0] with_driver url, driver_options, &block end end end end
Version data entries
5 entries across 5 versions & 1 rubygems