corl 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/VERSION +1 -1
  4. data/bootstrap/os/ubuntu/06_puppet.sh +1 -1
  5. data/corl.gemspec +171 -3
  6. data/lib/CORL/builder/identity.rb +6 -3
  7. data/lib/CORL/builder/package.rb +3 -3
  8. data/lib/CORL/configuration/file.rb +21 -7
  9. data/lib/CORL/machine/vagrant.rb +3 -3
  10. data/lib/CORL/node/vagrant.rb +2 -5
  11. data/lib/CORL/provisioner/puppetnode.rb +8 -8
  12. data/lib/core/facade.rb +7 -3
  13. data/lib/core/mixin/action/keypair.rb +3 -3
  14. data/lib/core/mixin/action/registration.rb +31 -0
  15. data/lib/core/mixin/lookup.rb +50 -6
  16. data/lib/core/mixin/machine/ssh.rb +4 -4
  17. data/lib/core/plugin/cloud_action.rb +8 -1
  18. data/lib/core/plugin/configuration.rb +6 -7
  19. data/lib/core/plugin/fog_node.rb +7 -0
  20. data/lib/core/plugin/network.rb +31 -0
  21. data/lib/core/plugin/node.rb +182 -117
  22. data/lib/core/vagrant/provisioner/provisioner.rb +1 -1
  23. data/lib/nucleon/action/cloud/config.rb +259 -0
  24. data/lib/nucleon/action/cloud/images.rb +1 -1
  25. data/lib/nucleon/action/cloud/inspect.rb +11 -2
  26. data/lib/nucleon/action/cloud/machines.rb +1 -1
  27. data/lib/nucleon/action/cloud/regions.rb +1 -1
  28. data/lib/nucleon/action/cloud/settings.rb +185 -0
  29. data/lib/nucleon/action/node/IP.rb +1 -1
  30. data/lib/nucleon/action/node/bootstrap.rb +1 -1
  31. data/lib/nucleon/action/node/cache.rb +133 -0
  32. data/lib/nucleon/action/node/fact.rb +119 -0
  33. data/lib/nucleon/action/node/facts.rb +16 -16
  34. data/lib/nucleon/action/node/group.rb +115 -0
  35. data/lib/nucleon/action/node/groups.rb +33 -0
  36. data/lib/nucleon/action/node/identity.rb +75 -0
  37. data/lib/nucleon/action/node/lookup.rb +20 -7
  38. data/lib/nucleon/action/node/seed.rb +6 -6
  39. data/lib/nucleon/action/node/status.rb +76 -0
  40. data/lib/nucleon/action/plugin/create.rb +169 -0
  41. data/lib/nucleon/action/plugin/list.rb +69 -0
  42. data/lib/nucleon/action/plugin/template/nucleon.action.erb +56 -0
  43. data/lib/nucleon/action/plugins.rb +14 -0
  44. data/locales/en.yml +3 -0
  45. data/rdoc/site/0.5.0/CORL/Build.html +757 -0
  46. data/rdoc/site/0.5.0/CORL/Builder/Identity.html +569 -0
  47. data/rdoc/site/0.5.0/CORL/Builder/Package.html +576 -0
  48. data/rdoc/site/0.5.0/CORL/Builder.html +360 -0
  49. data/rdoc/site/0.5.0/CORL/Configuration/File.html +1148 -0
  50. data/rdoc/site/0.5.0/CORL/Configuration.html +359 -0
  51. data/rdoc/site/0.5.0/CORL/Errors.html +359 -0
  52. data/rdoc/site/0.5.0/CORL/Facade.html +899 -0
  53. data/rdoc/site/0.5.0/CORL/Machine/AWS.html +753 -0
  54. data/rdoc/site/0.5.0/CORL/Machine/Fog.html +1289 -0
  55. data/rdoc/site/0.5.0/CORL/Machine/Physical.html +1059 -0
  56. data/rdoc/site/0.5.0/CORL/Machine/Rackspace.html +534 -0
  57. data/rdoc/site/0.5.0/CORL/Machine/Vagrant.html +1320 -0
  58. data/rdoc/site/0.5.0/CORL/Machine.html +363 -0
  59. data/rdoc/site/0.5.0/CORL/Mixin/Action/Keypair.html +592 -0
  60. data/rdoc/site/0.5.0/CORL/Mixin/Action.html +359 -0
  61. data/rdoc/site/0.5.0/CORL/Mixin/Builder/Global.html +604 -0
  62. data/rdoc/site/0.5.0/CORL/Mixin/Builder/Instance.html +696 -0
  63. data/rdoc/site/0.5.0/CORL/Mixin/Builder.html +359 -0
  64. data/rdoc/site/0.5.0/CORL/Mixin/Lookup.html +1139 -0
  65. data/rdoc/site/0.5.0/CORL/Mixin/Machine/SSH.html +675 -0
  66. data/rdoc/site/0.5.0/CORL/Mixin/Machine.html +359 -0
  67. data/rdoc/site/0.5.0/CORL/Mixin/Macro/NetworkSettings.html +484 -0
  68. data/rdoc/site/0.5.0/CORL/Mixin/Macro.html +359 -0
  69. data/rdoc/site/0.5.0/CORL/Mixin.html +363 -0
  70. data/rdoc/site/0.5.0/CORL/Network/CORL.html +411 -0
  71. data/rdoc/site/0.5.0/CORL/Network.html +359 -0
  72. data/rdoc/site/0.5.0/CORL/Node/AWS.html +736 -0
  73. data/rdoc/site/0.5.0/CORL/Node/Fog.html +1212 -0
  74. data/rdoc/site/0.5.0/CORL/Node/Local.html +444 -0
  75. data/rdoc/site/0.5.0/CORL/Node/Rackspace.html +729 -0
  76. data/rdoc/site/0.5.0/CORL/Node/Vagrant.html +1476 -0
  77. data/rdoc/site/0.5.0/CORL/Node.html +363 -0
  78. data/rdoc/site/0.5.0/CORL/Plugin/Builder.html +500 -0
  79. data/rdoc/site/0.5.0/CORL/Plugin/Configuration.html +1271 -0
  80. data/rdoc/site/0.5.0/CORL/Plugin/Machine.html +1299 -0
  81. data/rdoc/site/0.5.0/CORL/Plugin/Network.html +1580 -0
  82. data/rdoc/site/0.5.0/CORL/Plugin/Node.html +4041 -0
  83. data/rdoc/site/0.5.0/CORL/Plugin/Provisioner.html +1115 -0
  84. data/rdoc/site/0.5.0/CORL/Plugin.html +649 -0
  85. data/rdoc/site/0.5.0/CORL/Provisioner/Puppetnode.html +1177 -0
  86. data/rdoc/site/0.5.0/CORL/Provisioner.html +359 -0
  87. data/rdoc/site/0.5.0/CORL/Util/Puppet/Resource.html +1058 -0
  88. data/rdoc/site/0.5.0/CORL/Util/Puppet/ResourceGroup.html +940 -0
  89. data/rdoc/site/0.5.0/CORL/Util/Puppet.html +1107 -0
  90. data/rdoc/site/0.5.0/CORL/Util.html +361 -0
  91. data/rdoc/site/0.5.0/CORL/Vagrant/Config.html +943 -0
  92. data/rdoc/site/0.5.0/CORL/Vagrant.html +438 -0
  93. data/rdoc/site/0.5.0/CORL.html +471 -0
  94. data/rdoc/site/0.5.0/Fog/Compute/AWS/Server.html +443 -0
  95. data/rdoc/site/0.5.0/Fog/Compute/AWS.html +365 -0
  96. data/rdoc/site/0.5.0/Fog/Compute/RackspaceV2/Server.html +428 -0
  97. data/rdoc/site/0.5.0/Fog/Compute/RackspaceV2.html +365 -0
  98. data/rdoc/site/0.5.0/Fog/Compute.html +360 -0
  99. data/rdoc/site/0.5.0/Fog.html +360 -0
  100. data/rdoc/site/0.5.0/Hiera/Backend.html +442 -0
  101. data/rdoc/site/0.5.0/Hiera/Corl_logger.html +469 -0
  102. data/rdoc/site/0.5.0/Hiera.html +366 -0
  103. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Create.html +538 -0
  104. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Hiera.html +566 -0
  105. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Images.html +572 -0
  106. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Inspect.html +524 -0
  107. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Machines.html +567 -0
  108. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Regions.html +567 -0
  109. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Vagrantfile.html +515 -0
  110. data/rdoc/site/0.5.0/Nucleon/Action/Cloud.html +365 -0
  111. data/rdoc/site/0.5.0/Nucleon/Action/Node/Authorize.html +543 -0
  112. data/rdoc/site/0.5.0/Nucleon/Action/Node/Bootstrap.html +604 -0
  113. data/rdoc/site/0.5.0/Nucleon/Action/Node/Build.html +526 -0
  114. data/rdoc/site/0.5.0/Nucleon/Action/Node/Destroy.html +573 -0
  115. data/rdoc/site/0.5.0/Nucleon/Action/Node/Exec.html +530 -0
  116. data/rdoc/site/0.5.0/Nucleon/Action/Node/Facts.html +456 -0
  117. data/rdoc/site/0.5.0/Nucleon/Action/Node/IP.html +453 -0
  118. data/rdoc/site/0.5.0/Nucleon/Action/Node/Image.html +573 -0
  119. data/rdoc/site/0.5.0/Nucleon/Action/Node/Keypair.html +572 -0
  120. data/rdoc/site/0.5.0/Nucleon/Action/Node/Lookup.html +532 -0
  121. data/rdoc/site/0.5.0/Nucleon/Action/Node/Provision.html +553 -0
  122. data/rdoc/site/0.5.0/Nucleon/Action/Node/Reboot.html +573 -0
  123. data/rdoc/site/0.5.0/Nucleon/Action/Node/Revoke.html +541 -0
  124. data/rdoc/site/0.5.0/Nucleon/Action/Node/SSH.html +583 -0
  125. data/rdoc/site/0.5.0/Nucleon/Action/Node/Seed.html +602 -0
  126. data/rdoc/site/0.5.0/Nucleon/Action/Node/Spawn.html +675 -0
  127. data/rdoc/site/0.5.0/Nucleon/Action/Node/Start.html +573 -0
  128. data/rdoc/site/0.5.0/Nucleon/Action/Node/Stop.html +573 -0
  129. data/rdoc/site/0.5.0/Nucleon/Action/Node.html +376 -0
  130. data/rdoc/site/0.5.0/Nucleon/Action.html +383 -0
  131. data/rdoc/site/0.5.0/Nucleon/Config.html +377 -0
  132. data/rdoc/site/0.5.0/Nucleon/Event/Puppet.html +693 -0
  133. data/rdoc/site/0.5.0/Nucleon/Event.html +359 -0
  134. data/rdoc/site/0.5.0/Nucleon/Plugin/Base.html +365 -0
  135. data/rdoc/site/0.5.0/Nucleon/Plugin/CloudAction.html +838 -0
  136. data/rdoc/site/0.5.0/Nucleon/Plugin.html +360 -0
  137. data/rdoc/site/0.5.0/Nucleon/Template/Environment.html +548 -0
  138. data/rdoc/site/0.5.0/Nucleon/Template.html +359 -0
  139. data/rdoc/site/0.5.0/Nucleon.html +387 -0
  140. data/rdoc/site/0.5.0/Object.html +378 -0
  141. data/rdoc/site/0.5.0/Puppet/DataBinding/Corl.html +365 -0
  142. data/rdoc/site/0.5.0/Puppet/DataBinding.html +358 -0
  143. data/rdoc/site/0.5.0/Puppet/Indirector/Corl.html +477 -0
  144. data/rdoc/site/0.5.0/Puppet/Indirector.html +358 -0
  145. data/rdoc/site/0.5.0/Puppet/Parser/Functions.html +500 -0
  146. data/rdoc/site/0.5.0/Puppet/Parser.html +358 -0
  147. data/rdoc/site/0.5.0/Puppet.html +358 -0
  148. data/rdoc/site/0.5.0/README_rdoc.html +360 -0
  149. data/rdoc/site/0.5.0/Vagrant/Config/Loader.html +419 -0
  150. data/rdoc/site/0.5.0/Vagrant/Config.html +359 -0
  151. data/rdoc/site/0.5.0/Vagrant/Vagrantfile.html +412 -0
  152. data/rdoc/site/0.5.0/Vagrant.html +366 -0
  153. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/DeleteCache.html +422 -0
  154. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/InitKeys.html +428 -0
  155. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/LinkNetwork.html +426 -0
  156. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action.html +361 -0
  157. data/rdoc/site/0.5.0/VagrantPlugins/CORL/BaseAction.html +511 -0
  158. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Command/Launcher.html +553 -0
  159. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Command.html +359 -0
  160. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Config/CORL.html +752 -0
  161. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Config.html +359 -0
  162. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Plugin.html +365 -0
  163. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Provisioner/CORL.html +556 -0
  164. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Provisioner.html +359 -0
  165. data/rdoc/site/0.5.0/VagrantPlugins/CORL.html +366 -0
  166. data/rdoc/site/0.5.0/VagrantPlugins.html +366 -0
  167. data/rdoc/site/0.5.0/created.rid +103 -0
  168. data/rdoc/site/0.5.0/images/add.png +0 -0
  169. data/rdoc/site/0.5.0/images/brick.png +0 -0
  170. data/rdoc/site/0.5.0/images/brick_link.png +0 -0
  171. data/rdoc/site/0.5.0/images/bug.png +0 -0
  172. data/rdoc/site/0.5.0/images/bullet_black.png +0 -0
  173. data/rdoc/site/0.5.0/images/bullet_toggle_minus.png +0 -0
  174. data/rdoc/site/0.5.0/images/bullet_toggle_plus.png +0 -0
  175. data/rdoc/site/0.5.0/images/date.png +0 -0
  176. data/rdoc/site/0.5.0/images/delete.png +0 -0
  177. data/rdoc/site/0.5.0/images/find.png +0 -0
  178. data/rdoc/site/0.5.0/images/loadingAnimation.gif +0 -0
  179. data/rdoc/site/0.5.0/images/macFFBgHack.png +0 -0
  180. data/rdoc/site/0.5.0/images/package.png +0 -0
  181. data/rdoc/site/0.5.0/images/page_green.png +0 -0
  182. data/rdoc/site/0.5.0/images/page_white_text.png +0 -0
  183. data/rdoc/site/0.5.0/images/page_white_width.png +0 -0
  184. data/rdoc/site/0.5.0/images/plugin.png +0 -0
  185. data/rdoc/site/0.5.0/images/ruby.png +0 -0
  186. data/rdoc/site/0.5.0/images/tag_blue.png +0 -0
  187. data/rdoc/site/0.5.0/images/tag_green.png +0 -0
  188. data/rdoc/site/0.5.0/images/transparent.png +0 -0
  189. data/rdoc/site/0.5.0/images/wrench.png +0 -0
  190. data/rdoc/site/0.5.0/images/wrench_orange.png +0 -0
  191. data/rdoc/site/0.5.0/images/zoom.png +0 -0
  192. data/rdoc/site/0.5.0/index.html +359 -0
  193. data/rdoc/site/0.5.0/js/darkfish.js +155 -0
  194. data/rdoc/site/0.5.0/js/jquery.js +18 -0
  195. data/rdoc/site/0.5.0/js/navigation.js +142 -0
  196. data/rdoc/site/0.5.0/js/search.js +94 -0
  197. data/rdoc/site/0.5.0/js/search_index.js +1 -0
  198. data/rdoc/site/0.5.0/js/searcher.js +228 -0
  199. data/rdoc/site/0.5.0/rdoc.css +543 -0
  200. data/rdoc/site/0.5.0/table_of_contents.html +1797 -0
  201. metadata +171 -3
  202. data/lib/nucleon/action/cloud/hiera.rb +0 -61
@@ -0,0 +1 @@
1
+ var search_data = {"index":{"searchIndex":["corl","build","builder","identity","package","configuration","file","errors","facade","machine","aws","fog","physical","rackspace","vagrant","mixin","action","keypair","builder","global","instance","lookup","machine","ssh","macro","networksettings","network","corl","node","aws","fog","local","rackspace","vagrant","plugin","builder","configuration","machine","network","node","provisioner","provisioner","puppetnode","util","puppet","resource","resourcegroup","vagrant","config","fog","compute","aws","server","rackspacev2","server","hiera","backend","corl_logger","nucleon","action","cloud","create","hiera","images","inspect","machines","regions","vagrantfile","node","authorize","bootstrap","build","destroy","exec","facts","ip","image","keypair","lookup","provision","reboot","revoke","ssh","seed","spawn","start","stop","config","event","puppet","plugin","base","cloudaction","template","environment","object","puppet","databinding","corl","indirector","corl","parser","functions","vagrant","config","loader","vagrantfile","vagrantplugins","corl","action","deletecache","initkeys","linknetwork","baseaction","command","launcher","config","corl","plugin","provisioner","corl","version()","action()","add()","add()","add_class()","add_composite_resource()","add_definition()","add_node()","add_resource()","add_search_path()","api_key()","api_key=()","api_user()","api_user=()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","arguments()","attach()","attach()","attach_data()","attach_files()","attach_keys()","auth_url()","auth_url=()","autoload()","autoload=()","autosave()","autosave=()","batch()","bootstrap()","bootstrap_script()","bootstrap_script()","bootstrap_script=()","bootstrap_script=()","build()","build()","build()","build()","build()","build_config()","build_dependencies()","build_directory()","build_directory()","build_directory()","build_directory()","build_directory()","build_info()","build_info()","build_info()","build_locations()","build_lock()","build_lock()","build_module()","build_profile()","build_profile()","build_profiles()","build_provider()","build_provider()","build_provider()","build_provider()","build_provider()","build_provisioner()","build_provisioners()","build_time()","build_time()","build_time=()","build_time=()","builder()","cache()","cache()","call()","call()","call()","call()","can_persist?()","check()","clean()","clear()","clear_config_cache()","cli()","cli_capture()","cli_check()","close_ssh_session()","command()","command()","command()","command=()","compiler()","composite_resources()","composite_resources=()","compute()","compute=()","concatenate()","concatenate()","config()","config_initialized?()","configuration()","configurations()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure()","configure_provisioner()","configure_shares()","configure_ssh()","configure_vagrant()","configure_vm()","connection_options()","connection_options=()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create()","create_config()","create_config()","create_fact()","create_fact()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_image()","create_machine()","created?()","created?()","created?()","created?()","custom_facts()","custom_facts=()","debug()","debug_lookup()","debug_resource()","default()","default=()","defaults()","delete()","delete_attachments()","delete_attachments()","delete_attachments()","delete_keys()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","describe()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","destroy()","directory()","directory()","directory()","directory=()","download()","download()","download()","download()","download()","download()","download()","each_module()","each_node_config()","element()","element=()","ensure_environment()","ensure_network()","ensure_node()","ensure_ready()","ensure_security_group()","env()","env()","exec()","exec()","exec()","exec()","exec()","exec()","exec()","exec_options()","exec_options()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute()","execute_remote()","extract_hostnames()","fact()","fact()","fact_var()","fact_var()","fact_var=()","fact_var=()","facts()","facts()","facts()","fetch_project()","filter_output()","filter_output()","finalize!()","find()","find_profiles()","gateway()","gateway=()","get_puppet_node()","group()","handle()","has_nodes?()","hiera()","hiera_configuration()","hiera_lookup_prefix()","hiera_override_dir()","hiera_override_dir()","hiera_override_dir()","hiera_var()","hiera_var()","hiera_var()","hiera_var=()","hiera_var=()","hiera_var=()","home()","home()","hostname()","hostname()","hostname()","id()","id()","id()","id_joiner()","id_joiner()","identities()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","ignore()","image()","image()","image()","image()","image=()","image_id()","image_id()","image_search_text()","image_search_text()","image_search_text()","image_search_text()","images()","images()","images()","import()","import()","import()","import()","import()","include()","info()","info()","info=()","info=()","init_network()","init_node()","init_puppet()","init_server()","init_server()","init_server()","init_shares()","init_ssh()","init_ssh_session()","initialized?()","inspect()","internal_path()","key_cache_directory()","key_config()","keypair()","keypair()","keypair=()","keypair=()","keypair_clean()","keypair_config()","keypair_ignore()","keypair_name()","lib_path()","load()","load()","load()","load()","load()","load()","load()","load_network()","local?()","local?()","local_machine()","local_machine=()","local_node()","localize()","locations()","logger()","lookup()","lookup()","lookup()","lookup()","lookup()","lookup_array()","lookup_array()","lookup_config()","lookup_facts()","lookup_hash()","lookup_hash()","machine()","machine=()","machine_config()","machine_config()","machine_config()","machine_config()","machine_config()","machine_type()","machine_type()","machine_type()","machine_type()","machine_type_id()","machine_type_id()","machine_types()","machine_types()","machine_types()","machine_types()","manage()","message()","message=()","method_missing()","method_missing()","namespace()","namevar()","network()","network()","network()","network=()","network_settings()","networks()","new()","new()","new()","new()","new()","new()","new()","new_machine()","node()","node()","node()","node=()","node_by_ip()","node_config()","node_exec()","node_groups()","node_ignore()","node_info()","nodes()","nodes_by_reference()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","normalize()","operation()","operation=()","package_gateways()","packages()","parse_params()","private_ip()","private_ip()","private_ip()","private_ip()","private_key()","private_key=()","process()","process_environment()","process_environment()","profile_dependencies()","profile_id()","profiles()","profiles=()","project()","provision()","provision()","provision()","provisioner()","provisioner_info()","provisioners()","provisioners()","public_ip()","public_ip()","public_ip()","public_ip()","public_ip()","public_key()","public_key=()","ready()","refresh_config()","region()","region=()","regions()","regions()","regions()","register()","register()","register()","register()","register_ids()","register_plugins()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","reload()","remote()","remote()","remove()","remove()","remove_location()","remove_plugin()","remove_plugin()","remove_plugin()","render()","render()","render()","render_assignment()","render_image()","render_image()","render_image()","render_image()","render_machine_type()","render_machine_type()","render_machine_type()","render_machine_type()","render_name()","render_processed()","render_value()","resource()","resource()","resource_joiner()","resource_joiner()","resources()","resources=()","router()","run()","run()","running?()","running?()","running?()","running?()","save()","save()","save()","save()","save()","scope()","search()","search_files()","select_largest()","send_files()","separate()","server()","server()","server=()","server=()","set()","set_command()","set_connection()","set_connection()","set_connection()","set_identity()","set_location()","set_location()","set_location()","set_package()","set_remote()","set_remote()","setup()","setup()","shares()","shares=()","ssh()","ssh=()","ssh_download()","ssh_exec()","ssh_path()","ssh_port()","ssh_port=()","ssh_terminal()","ssh_upload()","ssh_wait_for_ready()","ssh_wait_for_ready()","start()","start()","start()","start()","start()","start()","start()","start()","start_machine()","state()","state()","state()","state()","state()","state()","status()","stop()","stop()","stop()","stop()","stop()","stop()","stop()","suitable?()","supported_profiles()","synopsis()","tag()","terminal()","terminal()","terminal()","terminal()","terminal()","test_node()","title()","title=()","to_name()","translate()","translate()","translate()","translate()","translate_reference()","translate_reference()","translate_reference()","translate_reference()","translate_resource_refs()","translate_state()","type_info()","type_name()","update_project()","upload()","upload()","upload()","upload()","upload()","upload()","upload()","usable_image?()","usable_image?()","usable_image?()","user()","user=()","vagrant?()","vagrant_config()","vagrant_config_loaded?()","validate()","validate()","vm()","vm=()","vm_machine()","warn()","readme"],"longSearchIndex":["corl","corl::build","corl::builder","corl::builder::identity","corl::builder::package","corl::configuration","corl::configuration::file","corl::errors","corl::facade","corl::machine","corl::machine::aws","corl::machine::fog","corl::machine::physical","corl::machine::rackspace","corl::machine::vagrant","corl::mixin","corl::mixin::action","corl::mixin::action::keypair","corl::mixin::builder","corl::mixin::builder::global","corl::mixin::builder::instance","corl::mixin::lookup","corl::mixin::machine","corl::mixin::machine::ssh","corl::mixin::macro","corl::mixin::macro::networksettings","corl::network","corl::network::corl","corl::node","corl::node::aws","corl::node::fog","corl::node::local","corl::node::rackspace","corl::node::vagrant","corl::plugin","corl::plugin::builder","corl::plugin::configuration","corl::plugin::machine","corl::plugin::network","corl::plugin::node","corl::plugin::provisioner","corl::provisioner","corl::provisioner::puppetnode","corl::util","corl::util::puppet","corl::util::puppet::resource","corl::util::puppet::resourcegroup","corl::vagrant","corl::vagrant::config","fog","fog::compute","fog::compute::aws","fog::compute::aws::server","fog::compute::rackspacev2","fog::compute::rackspacev2::server","hiera","hiera::backend","hiera::corl_logger","nucleon","nucleon::action","nucleon::action::cloud","nucleon::action::cloud::create","nucleon::action::cloud::hiera","nucleon::action::cloud::images","nucleon::action::cloud::inspect","nucleon::action::cloud::machines","nucleon::action::cloud::regions","nucleon::action::cloud::vagrantfile","nucleon::action::node","nucleon::action::node::authorize","nucleon::action::node::bootstrap","nucleon::action::node::build","nucleon::action::node::destroy","nucleon::action::node::exec","nucleon::action::node::facts","nucleon::action::node::ip","nucleon::action::node::image","nucleon::action::node::keypair","nucleon::action::node::lookup","nucleon::action::node::provision","nucleon::action::node::reboot","nucleon::action::node::revoke","nucleon::action::node::ssh","nucleon::action::node::seed","nucleon::action::node::spawn","nucleon::action::node::start","nucleon::action::node::stop","nucleon::config","nucleon::event","nucleon::event::puppet","nucleon::plugin","nucleon::plugin::base","nucleon::plugin::cloudaction","nucleon::template","nucleon::template::environment","object","puppet","puppet::databinding","puppet::databinding::corl","puppet::indirector","puppet::indirector::corl","puppet::parser","puppet::parser::functions","vagrant","vagrant::config","vagrant::config::loader","vagrant::vagrantfile","vagrantplugins","vagrantplugins::corl","vagrantplugins::corl::action","vagrantplugins::corl::action::deletecache","vagrantplugins::corl::action::initkeys","vagrantplugins::corl::action::linknetwork","vagrantplugins::corl::baseaction","vagrantplugins::corl::command","vagrantplugins::corl::command::launcher","vagrantplugins::corl::config","vagrantplugins::corl::config::corl","vagrantplugins::corl::plugin","vagrantplugins::corl::provisioner","vagrantplugins::corl::provisioner::corl","corl::version()","corl::plugin::node#action()","corl::util::puppet::add()","corl::util::puppet::resourcegroup#add()","corl::util::puppet::add_class()","corl::util::puppet::resourcegroup#add_composite_resource()","corl::util::puppet::add_definition()","corl::plugin::network#add_node()","corl::util::puppet::add_resource()","corl::provisioner::puppetnode#add_search_path()","corl::node::fog#api_key()","corl::node::fog#api_key=()","corl::node::fog#api_user()","corl::node::fog#api_user=()","nucleon::action::cloud::create#arguments()","nucleon::action::cloud::hiera#arguments()","nucleon::action::cloud::images#arguments()","nucleon::action::cloud::inspect#arguments()","nucleon::action::cloud::machines#arguments()","nucleon::action::cloud::regions#arguments()","nucleon::action::node::authorize#arguments()","nucleon::action::node::bootstrap#arguments()","nucleon::action::node::build#arguments()","nucleon::action::node::destroy#arguments()","nucleon::action::node::exec#arguments()","nucleon::action::node::image#arguments()","nucleon::action::node::lookup#arguments()","nucleon::action::node::provision#arguments()","nucleon::action::node::reboot#arguments()","nucleon::action::node::revoke#arguments()","nucleon::action::node::ssh#arguments()","nucleon::action::node::seed#arguments()","nucleon::action::node::spawn#arguments()","nucleon::action::node::start#arguments()","nucleon::action::node::stop#arguments()","corl::configuration::file#attach()","corl::plugin::configuration#attach()","corl::plugin::network#attach_data()","corl::plugin::network#attach_files()","corl::plugin::node#attach_keys()","corl::node::fog#auth_url()","corl::node::fog#auth_url=()","corl::plugin::configuration#autoload()","corl::plugin::configuration#autoload=()","corl::plugin::configuration#autosave()","corl::plugin::configuration#autosave=()","corl::plugin::network#batch()","corl::plugin::node#bootstrap()","corl::node::vagrant#bootstrap_script()","corl::plugin::node#bootstrap_script()","corl::node::vagrant#bootstrap_script=()","corl::plugin::node#bootstrap_script=()","corl::node::vagrant#build()","corl::plugin::builder#build()","corl::plugin::network#build()","corl::plugin::node#build()","corl::plugin::provisioner#build()","corl::mixin::builder::instance#build_config()","corl::plugin::provisioner#build_dependencies()","corl::builder::identity#build_directory()","corl::builder::package#build_directory()","corl::mixin::builder::instance#build_directory()","corl::plugin::network#build_directory()","corl::plugin::provisioner#build_directory()","corl::plugin::build_info()","corl::plugin::node::build_info()","corl::plugin::provisioner#build_info()","corl::plugin::provisioner#build_locations()","corl::build#build_lock()","corl::mixin::builder::instance#build_lock()","corl::provisioner::puppetnode#build_module()","corl::plugin::provisioner#build_profile()","corl::provisioner::puppetnode#build_profile()","corl::plugin::provisioner#build_profiles()","corl::builder::identity#build_provider()","corl::builder::package#build_provider()","corl::plugin::builder#build_provider()","corl::plugin::node#build_provider()","corl::plugin::provisioner#build_provider()","corl::plugin::node#build_provisioner()","corl::plugin::node#build_provisioners()","corl::node::vagrant#build_time()","corl::plugin::node#build_time()","corl::node::vagrant#build_time=()","corl::plugin::node#build_time=()","corl::facade#builder()","corl::plugin::configuration#cache()","corl::plugin::network#cache()","vagrantplugins::corl::action::deletecache#call()","vagrantplugins::corl::action::initkeys#call()","vagrantplugins::corl::action::linknetwork#call()","vagrantplugins::corl::baseaction#call()","corl::plugin::configuration#can_persist?()","nucleon::event::puppet#check()","vagrantplugins::corl::provisioner::corl#clean()","corl::plugin::configuration#clear()","vagrant::config::loader#clear_config_cache()","corl::plugin::node#cli()","corl::plugin::node#cli_capture()","corl::plugin::node#cli_check()","corl::mixin::machine::ssh#close_ssh_session()","corl::machine::vagrant#command()","corl::plugin::node#command()","corl::vagrant::command()","corl::vagrant::command=()","corl::provisioner::puppetnode#compiler()","corl::util::puppet::resourcegroup#composite_resources()","corl::util::puppet::resourcegroup#composite_resources=()","corl::machine::fog#compute()","corl::machine::fog#compute=()","corl::mixin::builder::global#concatenate()","corl::mixin::builder::instance#concatenate()","corl::build#config()","corl::mixin::lookup#config_initialized?()","corl::facade#configuration()","corl::facade#configurations()","nucleon::action::cloud::create#configure()","nucleon::action::cloud::hiera#configure()","nucleon::action::cloud::images#configure()","nucleon::action::cloud::inspect#configure()","nucleon::action::cloud::machines#configure()","nucleon::action::cloud::regions#configure()","nucleon::action::cloud::vagrantfile#configure()","nucleon::action::node::authorize#configure()","nucleon::action::node::bootstrap#configure()","nucleon::action::node::build#configure()","nucleon::action::node::destroy#configure()","nucleon::action::node::exec#configure()","nucleon::action::node::image#configure()","nucleon::action::node::keypair#configure()","nucleon::action::node::lookup#configure()","nucleon::action::node::provision#configure()","nucleon::action::node::reboot#configure()","nucleon::action::node::revoke#configure()","nucleon::action::node::ssh#configure()","nucleon::action::node::seed#configure()","nucleon::action::node::spawn#configure()","nucleon::action::node::start#configure()","nucleon::action::node::stop#configure()","nucleon::plugin::cloudaction#configure()","vagrantplugins::corl::provisioner::corl#configure()","corl::vagrant::config::configure_provisioner()","corl::vagrant::config::configure_shares()","corl::vagrant::config::configure_ssh()","corl::vagrant::config::configure_vagrant()","corl::vagrant::config::configure_vm()","corl::node::fog#connection_options()","corl::node::fog#connection_options=()","corl::machine::aws#create()","corl::machine::fog#create()","corl::machine::physical#create()","corl::machine::vagrant#create()","corl::node::aws#create()","corl::node::fog#create()","corl::node::rackspace#create()","corl::node::vagrant#create()","corl::plugin::machine#create()","corl::plugin::node#create()","corl::node::aws#create_config()","corl::node::rackspace#create_config()","corl::facade#create_fact()","corl::mixin::lookup#create_fact()","corl::machine::aws#create_image()","corl::machine::fog#create_image()","corl::machine::physical#create_image()","corl::machine::rackspace#create_image()","corl::machine::vagrant#create_image()","corl::node::fog#create_image()","corl::node::vagrant#create_image()","corl::plugin::machine#create_image()","corl::plugin::node#create_image()","corl::plugin::node#create_machine()","corl::machine::fog#created?()","corl::machine::physical#created?()","corl::machine::vagrant#created?()","corl::plugin::machine#created?()","corl::plugin::node#custom_facts()","corl::plugin::node#custom_facts=()","hiera::corl_logger::debug()","corl::mixin::lookup#debug_lookup()","corl::util::puppet::debug_resource()","corl::util::puppet::resourcegroup#default()","corl::util::puppet::resourcegroup#default=()","corl::util::puppet::resource#defaults()","corl::plugin::configuration#delete()","corl::configuration::file#delete_attachments()","corl::plugin::configuration#delete_attachments()","corl::plugin::network#delete_attachments()","corl::plugin::node#delete_keys()","nucleon::action::cloud::create::describe()","nucleon::action::cloud::hiera::describe()","nucleon::action::cloud::images::describe()","nucleon::action::cloud::inspect::describe()","nucleon::action::cloud::machines::describe()","nucleon::action::cloud::regions::describe()","nucleon::action::cloud::vagrantfile::describe()","nucleon::action::node::authorize::describe()","nucleon::action::node::bootstrap::describe()","nucleon::action::node::build::describe()","nucleon::action::node::destroy::describe()","nucleon::action::node::exec::describe()","nucleon::action::node::facts::describe()","nucleon::action::node::ip::describe()","nucleon::action::node::image::describe()","nucleon::action::node::keypair::describe()","nucleon::action::node::lookup::describe()","nucleon::action::node::provision::describe()","nucleon::action::node::reboot::describe()","nucleon::action::node::revoke::describe()","nucleon::action::node::ssh::describe()","nucleon::action::node::seed::describe()","nucleon::action::node::spawn::describe()","nucleon::action::node::start::describe()","nucleon::action::node::stop::describe()","corl::machine::aws#destroy()","corl::machine::fog#destroy()","corl::machine::physical#destroy()","corl::machine::vagrant#destroy()","corl::node::fog#destroy()","corl::node::vagrant#destroy()","corl::plugin::machine#destroy()","corl::plugin::node#destroy()","corl::plugin::configuration#directory()","corl::plugin::network#directory()","corl::plugin::provisioner#directory()","corl::plugin::provisioner#directory=()","corl::machine::fog#download()","corl::machine::physical#download()","corl::machine::vagrant#download()","corl::node::fog#download()","corl::node::vagrant#download()","corl::plugin::machine#download()","corl::plugin::node#download()","corl::util::puppet::each_module()","corl::plugin::network#each_node_config()","nucleon::event::puppet#element()","nucleon::event::puppet#element=()","corl::provisioner::puppetnode#ensure_environment()","nucleon::plugin::cloudaction#ensure_network()","nucleon::plugin::cloudaction#ensure_node()","corl::util::puppet::resource#ensure_ready()","corl::machine::aws#ensure_security_group()","corl::machine::vagrant#env()","vagrantplugins::corl::command::launcher#env()","corl::machine::fog#exec()","corl::machine::physical#exec()","corl::machine::vagrant#exec()","corl::node::fog#exec()","corl::node::vagrant#exec()","corl::plugin::machine#exec()","corl::plugin::node#exec()","corl::node::fog#exec_options()","corl::node::vagrant#exec_options()","nucleon::action::cloud::create#execute()","nucleon::action::cloud::hiera#execute()","nucleon::action::cloud::images#execute()","nucleon::action::cloud::inspect#execute()","nucleon::action::cloud::machines#execute()","nucleon::action::cloud::regions#execute()","nucleon::action::cloud::vagrantfile#execute()","nucleon::action::node::authorize#execute()","nucleon::action::node::bootstrap#execute()","nucleon::action::node::build#execute()","nucleon::action::node::destroy#execute()","nucleon::action::node::exec#execute()","nucleon::action::node::facts#execute()","nucleon::action::node::ip#execute()","nucleon::action::node::image#execute()","nucleon::action::node::keypair#execute()","nucleon::action::node::lookup#execute()","nucleon::action::node::provision#execute()","nucleon::action::node::reboot#execute()","nucleon::action::node::revoke#execute()","nucleon::action::node::ssh#execute()","nucleon::action::node::seed#execute()","nucleon::action::node::spawn#execute()","nucleon::action::node::start#execute()","nucleon::action::node::stop#execute()","nucleon::plugin::cloudaction#execute()","vagrantplugins::corl::command::launcher#execute()","nucleon::plugin::cloudaction#execute_remote()","nucleon::action::node::spawn#extract_hostnames()","corl::facade#fact()","corl::mixin::lookup#fact()","corl::mixin::lookup#fact_var()","corl::plugin::node#fact_var()","corl::mixin::lookup#fact_var=()","corl::plugin::node#fact_var=()","corl::facade#facts()","corl::mixin::lookup#facts()","corl::plugin::node#facts()","corl::configuration::file#fetch_project()","corl::node::vagrant#filter_output()","corl::plugin::node#filter_output()","vagrantplugins::corl::config::corl#finalize!()","puppet::indirector::corl#find()","corl::plugin::provisioner#find_profiles()","corl::plugin::provisioner#gateway()","corl::plugin::provisioner#gateway=()","corl::provisioner::puppetnode#get_puppet_node()","corl::util::puppet::resource#group()","corl::provisioner::puppetnode#handle()","corl::plugin::network#has_nodes?()","corl::mixin::lookup#hiera()","corl::mixin::lookup#hiera_configuration()","corl::mixin::lookup#hiera_lookup_prefix()","corl::mixin::lookup#hiera_override_dir()","corl::plugin::network#hiera_override_dir()","corl::plugin::node#hiera_override_dir()","corl::mixin::lookup#hiera_var()","corl::plugin::network#hiera_var()","corl::plugin::node#hiera_var()","corl::mixin::lookup#hiera_var=()","corl::plugin::network#hiera_var=()","corl::plugin::node#hiera_var=()","corl::plugin::network#home()","corl::plugin::node#home()","corl::machine::physical#hostname()","corl::plugin::machine#hostname()","corl::plugin::node#hostname()","corl::mixin::builder::global#id()","corl::mixin::builder::instance#id()","corl::plugin::node#id()","corl::mixin::builder::global#id_joiner()","corl::mixin::builder::instance#id_joiner()","corl::builder::identity#identities()","corl::plugin::configuration#ignore()","corl::plugin::network#ignore()","nucleon::action::cloud::hiera#ignore()","nucleon::action::cloud::images#ignore()","nucleon::action::cloud::machines#ignore()","nucleon::action::cloud::regions#ignore()","nucleon::action::node::bootstrap#ignore()","nucleon::action::node::destroy#ignore()","nucleon::action::node::image#ignore()","nucleon::action::node::keypair#ignore()","nucleon::action::node::reboot#ignore()","nucleon::action::node::ssh#ignore()","nucleon::action::node::spawn#ignore()","nucleon::action::node::start#ignore()","nucleon::action::node::stop#ignore()","corl::machine::fog#image()","corl::machine::physical#image()","corl::plugin::machine#image()","corl::plugin::node#image()","corl::plugin::node#image=()","corl::node::vagrant#image_id()","corl::plugin::node#image_id()","corl::node::aws#image_search_text()","corl::node::rackspace#image_search_text()","corl::node::vagrant#image_search_text()","corl::plugin::node#image_search_text()","corl::machine::fog#images()","corl::plugin::machine#images()","corl::plugin::node#images()","corl::build#import()","corl::plugin::configuration#import()","corl::provisioner::puppetnode#import()","corl::util::puppet::import()","corl::util::puppet::resource#import()","corl::util::puppet::include()","corl::util::puppet::resource#info()","corl::util::puppet::resourcegroup#info()","corl::util::puppet::resource#info=()","corl::util::puppet::resourcegroup#info=()","nucleon::plugin::cloudaction#init_network()","corl::plugin::network#init_node()","corl::provisioner::puppetnode#init_puppet()","corl::machine::aws#init_server()","corl::machine::fog#init_server()","corl::machine::rackspace#init_server()","corl::node::vagrant#init_shares()","corl::machine::aws#init_ssh()","corl::mixin::machine::ssh#init_ssh_session()","corl::plugin::provisioner#initialized?()","corl::util::puppet::resourcegroup#inspect()","corl::mixin::builder::instance#internal_path()","corl::plugin::network#key_cache_directory()","corl::node::fog#key_config()","corl::mixin::action::keypair#keypair()","corl::plugin::node#keypair()","corl::mixin::action::keypair#keypair=()","corl::plugin::node#keypair=()","corl::mixin::action::keypair#keypair_clean()","corl::mixin::action::keypair#keypair_config()","corl::mixin::action::keypair#keypair_ignore()","corl::machine::aws#keypair_name()","corl::lib_path()","corl::configuration::file#load()","corl::machine::fog#load()","corl::machine::physical#load()","corl::machine::vagrant#load()","corl::plugin::configuration#load()","corl::plugin::machine#load()","corl::plugin::network#load()","corl::vagrant::config::load_network()","corl::node::local#local?()","corl::plugin::node#local?()","corl::plugin::node#local_machine()","corl::plugin::node#local_machine=()","corl::plugin::network#local_node()","corl::plugin::node#localize()","corl::build#locations()","corl::util::puppet::logger()","corl::mixin::lookup#lookup()","corl::plugin#lookup()","corl::provisioner::puppetnode#lookup()","corl::util::puppet::lookup()","hiera::backend::lookup()","corl::mixin::lookup#lookup_array()","corl::plugin::node#lookup_array()","corl::plugin::node#lookup_config()","corl::plugin::node#lookup_facts()","corl::mixin::lookup#lookup_hash()","corl::plugin::node#lookup_hash()","corl::plugin::node#machine()","corl::plugin::node#machine=()","corl::node::aws#machine_config()","corl::node::fog#machine_config()","corl::node::rackspace#machine_config()","corl::node::vagrant#machine_config()","corl::plugin::node#machine_config()","corl::machine::fog#machine_type()","corl::machine::physical#machine_type()","corl::plugin::machine#machine_type()","corl::plugin::node#machine_type()","corl::node::vagrant#machine_type_id()","corl::plugin::node#machine_type_id()","corl::machine::fog#machine_types()","corl::machine::vagrant#machine_types()","corl::plugin::machine#machine_types()","corl::plugin::node#machine_types()","corl::build#manage()","nucleon::event::puppet#message()","nucleon::event::puppet#message=()","corl::build#method_missing()","corl::plugin::node#method_missing()","nucleon::plugin::cloudaction::namespace()","corl::util::puppet::namevar()","corl::facade#network()","corl::provisioner::puppetnode::network()","corl::vagrant::config::network()","corl::vagrant::config::network=()","corl::mixin::macro::networksettings#network_settings()","corl::facade#networks()","corl::build::new()","corl::util::puppet::resource::new()","corl::util::puppet::resourcegroup::new()","puppet::indirector::corl::new()","vagrantplugins::corl::baseaction::new()","vagrantplugins::corl::config::corl::new()","vagrantplugins::corl::provisioner::corl::new()","corl::machine::vagrant#new_machine()","corl::facade#node()","corl::plugin::machine#node()","corl::provisioner::puppetnode::node()","corl::plugin::machine#node=()","corl::plugin::network#node_by_ip()","nucleon::plugin::cloudaction#node_config()","nucleon::plugin::cloudaction#node_exec()","corl::plugin::network#node_groups()","nucleon::plugin::cloudaction#node_ignore()","corl::plugin::network#node_info()","corl::facade#nodes()","corl::plugin::network#nodes_by_reference()","corl::builder::identity#normalize()","corl::builder::package#normalize()","corl::configuration::file#normalize()","corl::machine::physical#normalize()","corl::mixin::lookup#normalize()","corl::network::corl#normalize()","corl::node::aws#normalize()","corl::node::fog#normalize()","corl::node::local#normalize()","corl::node::rackspace#normalize()","corl::node::vagrant#normalize()","corl::plugin::builder#normalize()","corl::plugin::configuration#normalize()","corl::plugin::machine#normalize()","corl::plugin::network#normalize()","corl::plugin::node#normalize()","corl::plugin::provisioner#normalize()","corl::provisioner::puppetnode#normalize()","corl::util::puppet::resourcegroup#normalize()","nucleon::event::puppet#normalize()","nucleon::event::puppet#operation()","nucleon::event::puppet#operation=()","corl::plugin::provisioner#package_gateways()","corl::builder::package#packages()","corl::vagrant::config::parse_params()","corl::machine::fog#private_ip()","corl::machine::physical#private_ip()","corl::plugin::machine#private_ip()","corl::plugin::node#private_ip()","corl::plugin::node#private_key()","corl::plugin::node#private_key=()","corl::util::puppet::resource#process()","corl::mixin::builder::global#process_environment()","corl::mixin::builder::instance#process_environment()","corl::plugin::provisioner#profile_dependencies()","corl::plugin#profile_id()","corl::plugin::node#profiles()","corl::plugin::node#profiles=()","corl::plugin::configuration#project()","corl::plugin#provision()","corl::provisioner::puppetnode#provision()","vagrantplugins::corl::provisioner::corl#provision()","corl::facade#provisioner()","corl::plugin::node#provisioner_info()","corl::facade#provisioners()","corl::plugin::node#provisioners()","corl::facade#public_ip()","corl::machine::fog#public_ip()","corl::machine::physical#public_ip()","corl::plugin::machine#public_ip()","corl::plugin::node#public_ip()","corl::plugin::node#public_key()","corl::plugin::node#public_key=()","corl::util::puppet::resource#ready()","corl::machine::vagrant#refresh_config()","corl::node::fog#region()","corl::node::fog#region=()","corl::node::aws#regions()","corl::node::fog#regions()","corl::node::rackspace#regions()","corl::build#register()","corl::plugin::provisioner#register()","corl::provisioner::puppetnode#register()","corl::vagrant::config::register()","corl::plugin::configuration::register_ids()","corl::util::puppet::register_plugins()","corl::machine::aws#reload()","corl::machine::fog#reload()","corl::machine::physical#reload()","corl::machine::rackspace#reload()","corl::machine::vagrant#reload()","corl::node::fog#reload()","corl::node::vagrant#reload()","corl::plugin::machine#reload()","corl::plugin::node#reload()","vagrant::vagrantfile#reload()","corl::plugin::configuration#remote()","corl::plugin::network#remote()","corl::configuration::file#remove()","corl::plugin::configuration#remove()","corl::build#remove_location()","corl::plugin::configuration#remove_plugin()","corl::plugin::network#remove_plugin()","corl::plugin::node#remove_plugin()","corl::util::puppet::resource::render()","corl::util::puppet::resource#render()","nucleon::event::puppet#render()","nucleon::template::environment#render_assignment()","corl::node::aws#render_image()","corl::node::rackspace#render_image()","corl::node::vagrant#render_image()","corl::plugin::node#render_image()","corl::node::aws#render_machine_type()","corl::node::rackspace#render_machine_type()","corl::node::vagrant#render_machine_type()","corl::plugin::node#render_machine_type()","nucleon::template::environment#render_name()","nucleon::template::environment#render_processed()","nucleon::template::environment#render_value()","corl::mixin::builder::global#resource()","corl::mixin::builder::instance#resource()","corl::mixin::builder::global#resource_joiner()","corl::mixin::builder::instance#resource_joiner()","corl::util::puppet::resourcegroup#resources()","corl::util::puppet::resourcegroup#resources=()","corl::configuration::file#router()","corl::machine::vagrant#run()","corl::plugin::node#run()","corl::machine::fog#running?()","corl::machine::physical#running?()","corl::machine::vagrant#running?()","corl::plugin::machine#running?()","corl::configuration::file#save()","corl::node::vagrant#save()","corl::plugin::configuration#save()","corl::plugin::network#save()","corl::plugin::node#save()","corl::provisioner::puppetnode#scope()","corl::configuration::file#search()","corl::configuration::file#search_files()","corl::configuration::file#select_largest()","corl::plugin::node#send_files()","corl::configuration::file#separate()","corl::machine::fog#server()","corl::machine::vagrant#server()","corl::machine::fog#server=()","corl::machine::vagrant#server=()","corl::plugin::configuration#set()","corl::machine::vagrant#set_command()","corl::machine::aws#set_connection()","corl::machine::fog#set_connection()","corl::machine::rackspace#set_connection()","corl::builder::identity#set_identity()","corl::build#set_location()","corl::configuration::file#set_location()","corl::plugin::configuration#set_location()","corl::builder::package#set_package()","corl::plugin::configuration#set_remote()","corl::plugin::network#set_remote()","fog::compute::aws::server#setup()","fog::compute::rackspacev2::server#setup()","corl::node::vagrant#shares()","corl::node::vagrant#shares=()","corl::node::vagrant#ssh()","corl::node::vagrant#ssh=()","corl::mixin::machine::ssh#ssh_download()","corl::mixin::machine::ssh#ssh_exec()","corl::plugin::node#ssh_path()","corl::plugin::node#ssh_port()","corl::plugin::node#ssh_port=()","corl::mixin::machine::ssh#ssh_terminal()","corl::mixin::machine::ssh#ssh_upload()","corl::machine::fog#ssh_wait_for_ready()","corl::mixin::machine::ssh#ssh_wait_for_ready()","corl::machine::physical#start()","corl::machine::vagrant#start()","corl::node::aws#start()","corl::node::fog#start()","corl::node::rackspace#start()","corl::node::vagrant#start()","corl::plugin::machine#start()","corl::plugin::node#start()","corl::machine::vagrant#start_machine()","corl::machine::fog#state()","corl::machine::physical#state()","corl::machine::vagrant#state()","corl::node::vagrant#state()","corl::plugin::machine#state()","corl::plugin::node#state()","corl::provisioner::puppetnode::status()","corl::machine::fog#stop()","corl::machine::physical#stop()","corl::machine::vagrant#stop()","corl::node::fog#stop()","corl::node::vagrant#stop()","corl::plugin::machine#stop()","corl::plugin::node#stop()","hiera::corl_logger::suitable?()","corl::plugin::provisioner#supported_profiles()","vagrantplugins::corl::command::launcher::synopsis()","corl::util::puppet::resource#tag()","corl::machine::fog#terminal()","corl::machine::physical#terminal()","corl::machine::vagrant#terminal()","corl::plugin::machine#terminal()","corl::plugin::node#terminal()","corl::plugin::network#test_node()","corl::util::puppet::resource#title()","corl::util::puppet::resource#title=()","corl::util::puppet::to_name()","corl::plugin::translate()","corl::plugin::node::translate()","corl::util::puppet::resource#translate()","corl::util::puppet::resourcegroup#translate()","corl::plugin::translate_reference()","corl::plugin#translate_reference()","corl::plugin::node::translate_reference()","corl::plugin::node#translate_reference()","corl::util::puppet::resource#translate_resource_refs()","corl::plugin::machine#translate_state()","corl::util::puppet::type_info()","corl::util::puppet::type_name()","corl::configuration::file#update_project()","corl::machine::fog#upload()","corl::machine::physical#upload()","corl::machine::vagrant#upload()","corl::node::fog#upload()","corl::node::vagrant#upload()","corl::plugin::machine#upload()","corl::plugin::node#upload()","corl::node::aws#usable_image?()","corl::node::rackspace#usable_image?()","corl::plugin::node#usable_image?()","corl::plugin::node#user()","corl::plugin::node#user=()","corl::facade#vagrant?()","corl::facade#vagrant_config()","corl::facade#vagrant_config_loaded?()","nucleon::plugin::cloudaction#validate()","vagrantplugins::corl::config::corl#validate()","corl::node::vagrant#vm()","corl::node::vagrant#vm=()","vagrantplugins::corl::command::launcher#vm_machine()","hiera::corl_logger::warn()",""],"info":[["CORL","","CORL.html","",""],["CORL::Build","","CORL/Build.html","",""],["CORL::Builder","","CORL/Builder.html","",""],["CORL::Builder::Identity","","CORL/Builder/Identity.html","",""],["CORL::Builder::Package","","CORL/Builder/Package.html","",""],["CORL::Configuration","","CORL/Configuration.html","",""],["CORL::Configuration::File","","CORL/Configuration/File.html","",""],["CORL::Errors","","CORL/Errors.html","",""],["CORL::Facade","","CORL/Facade.html","",""],["CORL::Machine","","CORL/Machine.html","",""],["CORL::Machine::AWS","","CORL/Machine/AWS.html","",""],["CORL::Machine::Fog","","CORL/Machine/Fog.html","",""],["CORL::Machine::Physical","","CORL/Machine/Physical.html","",""],["CORL::Machine::Rackspace","","CORL/Machine/Rackspace.html","",""],["CORL::Machine::Vagrant","","CORL/Machine/Vagrant.html","",""],["CORL::Mixin","","CORL/Mixin.html","",""],["CORL::Mixin::Action","","CORL/Mixin/Action.html","",""],["CORL::Mixin::Action::Keypair","","CORL/Mixin/Action/Keypair.html","",""],["CORL::Mixin::Builder","","CORL/Mixin/Builder.html","",""],["CORL::Mixin::Builder::Global","","CORL/Mixin/Builder/Global.html","",""],["CORL::Mixin::Builder::Instance","","CORL/Mixin/Builder/Instance.html","",""],["CORL::Mixin::Lookup","","CORL/Mixin/Lookup.html","",""],["CORL::Mixin::Machine","","CORL/Mixin/Machine.html","",""],["CORL::Mixin::Machine::SSH","","CORL/Mixin/Machine/SSH.html","",""],["CORL::Mixin::Macro","","CORL/Mixin/Macro.html","",""],["CORL::Mixin::Macro::NetworkSettings","","CORL/Mixin/Macro/NetworkSettings.html","",""],["CORL::Network","","CORL/Network.html","",""],["CORL::Network::CORL","","CORL/Network/CORL.html","",""],["CORL::Node","","CORL/Node.html","",""],["CORL::Node::AWS","","CORL/Node/AWS.html","",""],["CORL::Node::Fog","","CORL/Node/Fog.html","",""],["CORL::Node::Local","","CORL/Node/Local.html","",""],["CORL::Node::Rackspace","","CORL/Node/Rackspace.html","",""],["CORL::Node::Vagrant","","CORL/Node/Vagrant.html","",""],["CORL::Plugin","","CORL/Plugin.html","",""],["CORL::Plugin::Builder","","CORL/Plugin/Builder.html","",""],["CORL::Plugin::Configuration","","CORL/Plugin/Configuration.html","",""],["CORL::Plugin::Machine","","CORL/Plugin/Machine.html","",""],["CORL::Plugin::Network","","CORL/Plugin/Network.html","",""],["CORL::Plugin::Node","","CORL/Plugin/Node.html","",""],["CORL::Plugin::Provisioner","","CORL/Plugin/Provisioner.html","",""],["CORL::Provisioner","","CORL/Provisioner.html","",""],["CORL::Provisioner::Puppetnode","","CORL/Provisioner/Puppetnode.html","",""],["CORL::Util","","CORL/Util.html","",""],["CORL::Util::Puppet","","CORL/Util/Puppet.html","",""],["CORL::Util::Puppet::Resource","","CORL/Util/Puppet/Resource.html","",""],["CORL::Util::Puppet::ResourceGroup","","CORL/Util/Puppet/ResourceGroup.html","",""],["CORL::Vagrant","","CORL/Vagrant.html","",""],["CORL::Vagrant::Config","","CORL/Vagrant/Config.html","",""],["Fog","","Fog.html","",""],["Fog::Compute","","Fog/Compute.html","",""],["Fog::Compute::AWS","","Fog/Compute/AWS.html","",""],["Fog::Compute::AWS::Server","","Fog/Compute/AWS/Server.html","",""],["Fog::Compute::RackspaceV2","","Fog/Compute/RackspaceV2.html","",""],["Fog::Compute::RackspaceV2::Server","","Fog/Compute/RackspaceV2/Server.html","",""],["Hiera","","Hiera.html","",""],["Hiera::Backend","","Hiera/Backend.html","",""],["Hiera::Corl_logger","","Hiera/Corl_logger.html","",""],["Nucleon","","Nucleon.html","",""],["Nucleon::Action","","Nucleon/Action.html","",""],["Nucleon::Action::Cloud","","Nucleon/Action/Cloud.html","",""],["Nucleon::Action::Cloud::Create","","Nucleon/Action/Cloud/Create.html","",""],["Nucleon::Action::Cloud::Hiera","","Nucleon/Action/Cloud/Hiera.html","",""],["Nucleon::Action::Cloud::Images","","Nucleon/Action/Cloud/Images.html","",""],["Nucleon::Action::Cloud::Inspect","","Nucleon/Action/Cloud/Inspect.html","",""],["Nucleon::Action::Cloud::Machines","","Nucleon/Action/Cloud/Machines.html","",""],["Nucleon::Action::Cloud::Regions","","Nucleon/Action/Cloud/Regions.html","",""],["Nucleon::Action::Cloud::Vagrantfile","","Nucleon/Action/Cloud/Vagrantfile.html","",""],["Nucleon::Action::Node","","Nucleon/Action/Node.html","",""],["Nucleon::Action::Node::Authorize","","Nucleon/Action/Node/Authorize.html","",""],["Nucleon::Action::Node::Bootstrap","","Nucleon/Action/Node/Bootstrap.html","",""],["Nucleon::Action::Node::Build","","Nucleon/Action/Node/Build.html","",""],["Nucleon::Action::Node::Destroy","","Nucleon/Action/Node/Destroy.html","",""],["Nucleon::Action::Node::Exec","","Nucleon/Action/Node/Exec.html","",""],["Nucleon::Action::Node::Facts","","Nucleon/Action/Node/Facts.html","",""],["Nucleon::Action::Node::IP","","Nucleon/Action/Node/IP.html","",""],["Nucleon::Action::Node::Image","","Nucleon/Action/Node/Image.html","",""],["Nucleon::Action::Node::Keypair","","Nucleon/Action/Node/Keypair.html","",""],["Nucleon::Action::Node::Lookup","","Nucleon/Action/Node/Lookup.html","",""],["Nucleon::Action::Node::Provision","","Nucleon/Action/Node/Provision.html","",""],["Nucleon::Action::Node::Reboot","","Nucleon/Action/Node/Reboot.html","",""],["Nucleon::Action::Node::Revoke","","Nucleon/Action/Node/Revoke.html","",""],["Nucleon::Action::Node::SSH","","Nucleon/Action/Node/SSH.html","",""],["Nucleon::Action::Node::Seed","","Nucleon/Action/Node/Seed.html","",""],["Nucleon::Action::Node::Spawn","","Nucleon/Action/Node/Spawn.html","",""],["Nucleon::Action::Node::Start","","Nucleon/Action/Node/Start.html","",""],["Nucleon::Action::Node::Stop","","Nucleon/Action/Node/Stop.html","",""],["Nucleon::Config","","Nucleon/Config.html","",""],["Nucleon::Event","","Nucleon/Event.html","",""],["Nucleon::Event::Puppet","","Nucleon/Event/Puppet.html","",""],["Nucleon::Plugin","","Nucleon/Plugin.html","",""],["Nucleon::Plugin::Base","","Nucleon/Plugin/Base.html","",""],["Nucleon::Plugin::CloudAction","","Nucleon/Plugin/CloudAction.html","",""],["Nucleon::Template","","Nucleon/Template.html","",""],["Nucleon::Template::Environment","","Nucleon/Template/Environment.html","",""],["Object","","Object.html","",""],["Puppet","","Puppet.html","",""],["Puppet::DataBinding","","Puppet/DataBinding.html","",""],["Puppet::DataBinding::Corl","","Puppet/DataBinding/Corl.html","",""],["Puppet::Indirector","","Puppet/Indirector.html","",""],["Puppet::Indirector::Corl","","Puppet/Indirector/Corl.html","",""],["Puppet::Parser","","Puppet/Parser.html","",""],["Puppet::Parser::Functions","","Puppet/Parser/Functions.html","","<p>corl_include.rb\n<p>This function includes classes based on dynamic configurations. following\nthis order\n<p>Hiera …\n"],["Vagrant","","Vagrant.html","","<p>Because we create configurations and operate on resulting machines during\nthe course of a single CLI …\n"],["Vagrant::Config","","Vagrant/Config.html","",""],["Vagrant::Config::Loader","","Vagrant/Config/Loader.html","",""],["Vagrant::Vagrantfile","","Vagrant/Vagrantfile.html","",""],["VagrantPlugins","","VagrantPlugins.html","",""],["VagrantPlugins::CORL","","VagrantPlugins/CORL.html","",""],["VagrantPlugins::CORL::Action","","VagrantPlugins/CORL/Action.html","",""],["VagrantPlugins::CORL::Action::DeleteCache","","VagrantPlugins/CORL/Action/DeleteCache.html","",""],["VagrantPlugins::CORL::Action::InitKeys","","VagrantPlugins/CORL/Action/InitKeys.html","",""],["VagrantPlugins::CORL::Action::LinkNetwork","","VagrantPlugins/CORL/Action/LinkNetwork.html","",""],["VagrantPlugins::CORL::BaseAction","","VagrantPlugins/CORL/BaseAction.html","",""],["VagrantPlugins::CORL::Command","","VagrantPlugins/CORL/Command.html","",""],["VagrantPlugins::CORL::Command::Launcher","","VagrantPlugins/CORL/Command/Launcher.html","",""],["VagrantPlugins::CORL::Config","","VagrantPlugins/CORL/Config.html","",""],["VagrantPlugins::CORL::Config::CORL","","VagrantPlugins/CORL/Config/CORL.html","",""],["VagrantPlugins::CORL::Plugin","","VagrantPlugins/CORL/Plugin.html","",""],["VagrantPlugins::CORL::Provisioner","","VagrantPlugins/CORL/Provisioner.html","",""],["VagrantPlugins::CORL::Provisioner::CORL","","VagrantPlugins/CORL/Provisioner/CORL.html","",""],["VERSION","CORL","CORL.html#method-c-VERSION","()",""],["action","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-action","(provider, options = {})",""],["add","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add","(type_name, resources, defaults = {}, options = {})",""],["add","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-add","(resources, options = {})",""],["add_class","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_class","(title, properties, options = {})",""],["add_composite_resource","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-add_composite_resource","(name, resource_names)",""],["add_definition","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_definition","(type, title, properties, options = {})",""],["add_node","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-add_node","(provider, name, options = {})",""],["add_resource","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-add_resource","(type, title, properties, options = {})",""],["add_search_path","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-add_search_path","(type, resource_name)",""],["api_key","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_key","()",""],["api_key=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_key-3D","(api_key)",""],["api_user","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_user","()",""],["api_user=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-api_user-3D","(api_user)",""],["arguments","Nucleon::Action::Cloud::Create","Nucleon/Action/Cloud/Create.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Cloud::Hiera","Nucleon/Action/Cloud/Hiera.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Cloud::Images","Nucleon/Action/Cloud/Images.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Cloud::Inspect","Nucleon/Action/Cloud/Inspect.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Cloud::Machines","Nucleon/Action/Cloud/Machines.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Cloud::Regions","Nucleon/Action/Cloud/Regions.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Authorize","Nucleon/Action/Node/Authorize.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Bootstrap","Nucleon/Action/Node/Bootstrap.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Build","Nucleon/Action/Node/Build.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Destroy","Nucleon/Action/Node/Destroy.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Exec","Nucleon/Action/Node/Exec.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Image","Nucleon/Action/Node/Image.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Lookup","Nucleon/Action/Node/Lookup.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Provision","Nucleon/Action/Node/Provision.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Reboot","Nucleon/Action/Node/Reboot.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Revoke","Nucleon/Action/Node/Revoke.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::SSH","Nucleon/Action/Node/SSH.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Seed","Nucleon/Action/Node/Seed.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Start","Nucleon/Action/Node/Start.html#method-i-arguments","()",""],["arguments","Nucleon::Action::Node::Stop","Nucleon/Action/Node/Stop.html#method-i-arguments","()",""],["attach","CORL::Configuration::File","CORL/Configuration/File.html#method-i-attach","(type, name, data, options = {})",""],["attach","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-attach","(type, name, data, options = {})",""],["attach_data","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-attach_data","(type, name, data, options = {})",""],["attach_files","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-attach_files","(type, name, files, options = {})",""],["attach_keys","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-attach_keys","(keypair)",""],["auth_url","CORL::Node::Fog","CORL/Node/Fog.html#method-i-auth_url","()",""],["auth_url=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-auth_url-3D","(auth_url)",""],["autoload","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-autoload","(default = false)",""],["autoload=","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-autoload-3D","(autoload)",""],["autosave","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-autosave","(default = false)",""],["autosave=","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-autosave-3D","(autosave)",""],["batch","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-batch","(node_references, default_provider = nil, parallel = true, &code)",""],["bootstrap","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-bootstrap","(local_path, options = {})",""],["bootstrap_script","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-bootstrap_script","()",""],["bootstrap_script","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-bootstrap_script","()",""],["bootstrap_script=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-bootstrap_script-3D","(bootstrap)",""],["bootstrap_script=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-bootstrap_script-3D","(bootstrap)",""],["build","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build","(options = {})",""],["build","CORL::Plugin::Builder","CORL/Plugin/Builder.html#method-i-build","(node, options = {})",""],["build","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-build","()",""],["build","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build","(options = {})",""],["build","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build","(node, options = {})",""],["build_config","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-build_config","()",""],["build_dependencies","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_dependencies","(node, reset = false)",""],["build_directory","CORL::Builder::Identity","CORL/Builder/Identity.html#method-i-build_directory","()",""],["build_directory","CORL::Builder::Package","CORL/Builder/Package.html#method-i-build_directory","()",""],["build_directory","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-build_directory","()",""],["build_directory","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-build_directory","()",""],["build_directory","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_directory","()",""],["build_info","CORL::Plugin","CORL/Plugin.html#method-c-build_info","(namespace, plugin_type, data)",""],["build_info","CORL::Plugin::Node","CORL/Plugin/Node.html#method-c-build_info","(namespace, plugin_type, data)",""],["build_info","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_info","(node, reset = false)",""],["build_locations","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_locations","(node, reset = false)",""],["build_lock","CORL::Build","CORL/Build.html#method-i-build_lock","()",""],["build_lock","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-build_lock","()",""],["build_module","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-build_module","(name, project_reference, directory, profile, environment)",""],["build_profile","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_profile","(name, info, package, environment, profiles)",""],["build_profile","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-build_profile","(name, info, package, environment, profiles)",""],["build_profiles","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_profiles","(node, reset = false)",""],["build_provider","CORL::Builder::Identity","CORL/Builder/Identity.html#method-i-build_provider","(name, project_reference, environment)",""],["build_provider","CORL::Builder::Package","CORL/Builder/Package.html#method-i-build_provider","(name, project_reference, environment)",""],["build_provider","CORL::Plugin::Builder","CORL/Plugin/Builder.html#method-i-build_provider","(name, project_reference, environment)",""],["build_provider","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build_provider","(provider, plugin, config)",""],["build_provider","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-build_provider","(package, info, environment, combined_info)",""],["build_provisioner","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build_provisioner","(name, plugin, provider, config)",""],["build_provisioners","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build_provisioners","(provider, collection, config)",""],["build_time","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build_time","()",""],["build_time","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build_time","()",""],["build_time=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-build_time-3D","(time)",""],["build_time=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-build_time-3D","(time)",""],["builder","CORL::Facade","CORL/Facade.html#method-i-builder","(options, provider = nil)",""],["cache","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-cache","()",""],["cache","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-cache","()",""],["call","VagrantPlugins::CORL::Action::DeleteCache","VagrantPlugins/CORL/Action/DeleteCache.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::Action::InitKeys","VagrantPlugins/CORL/Action/InitKeys.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::Action::LinkNetwork","VagrantPlugins/CORL/Action/LinkNetwork.html#method-i-call","(env)",""],["call","VagrantPlugins::CORL::BaseAction","VagrantPlugins/CORL/BaseAction.html#method-i-call","(env)",""],["can_persist?","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-can_persist-3F","()",""],["check","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-check","(source)",""],["clean","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-clean","(options)",""],["clear","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-clear","(options = {})",""],["clear_config_cache","Vagrant::Config::Loader","Vagrant/Config/Loader.html#method-i-clear_config_cache","(sources = nil)",""],["cli","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-cli","()",""],["cli_capture","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-cli_capture","(cli_command, *args)",""],["cli_check","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-cli_check","(cli_command, *args)",""],["close_ssh_session","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-close_ssh_session","()",""],["command","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-command","()",""],["command","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-command","(command, options = {})",""],["command","CORL::Vagrant","CORL/Vagrant.html#method-c-command","()",""],["command=","CORL::Vagrant","CORL/Vagrant.html#method-c-command-3D","(command)",""],["compiler","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-compiler","()",""],["composite_resources","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources","(default = {})",""],["composite_resources=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-composite_resources-3D","(resources)",""],["compute","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-compute","()",""],["compute=","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-compute-3D","(compute)",""],["concatenate","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-concatenate","(components, capitalize = false, joiner = nil)",""],["concatenate","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-concatenate","(components, capitalize = false, joiner = nil)",""],["config","CORL::Build","CORL/Build.html#method-i-config","()",""],["config_initialized?","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-config_initialized-3F","()",""],["configuration","CORL::Facade","CORL/Facade.html#method-i-configuration","(options, provider = nil)",""],["configurations","CORL::Facade","CORL/Facade.html#method-i-configurations","(data, build_hash = false, keep_array = false)",""],["configure","Nucleon::Action::Cloud::Create","Nucleon/Action/Cloud/Create.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Hiera","Nucleon/Action/Cloud/Hiera.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Images","Nucleon/Action/Cloud/Images.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Inspect","Nucleon/Action/Cloud/Inspect.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Machines","Nucleon/Action/Cloud/Machines.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Regions","Nucleon/Action/Cloud/Regions.html#method-i-configure","()",""],["configure","Nucleon::Action::Cloud::Vagrantfile","Nucleon/Action/Cloud/Vagrantfile.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Authorize","Nucleon/Action/Node/Authorize.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Bootstrap","Nucleon/Action/Node/Bootstrap.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Build","Nucleon/Action/Node/Build.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Destroy","Nucleon/Action/Node/Destroy.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Exec","Nucleon/Action/Node/Exec.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Image","Nucleon/Action/Node/Image.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Keypair","Nucleon/Action/Node/Keypair.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Lookup","Nucleon/Action/Node/Lookup.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Provision","Nucleon/Action/Node/Provision.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Reboot","Nucleon/Action/Node/Reboot.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Revoke","Nucleon/Action/Node/Revoke.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::SSH","Nucleon/Action/Node/SSH.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Seed","Nucleon/Action/Node/Seed.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Start","Nucleon/Action/Node/Start.html#method-i-configure","()",""],["configure","Nucleon::Action::Node::Stop","Nucleon/Action/Node/Stop.html#method-i-configure","()",""],["configure","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-configure","()",""],["configure","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-configure","(root_config)",""],["configure_provisioner","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_provisioner","(network, node, machine, &code)",""],["configure_shares","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_shares","(node, machine)",""],["configure_ssh","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_ssh","(node, machine)",""],["configure_vagrant","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_vagrant","(network, vagrant)",""],["configure_vm","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-configure_vm","(node, machine)",""],["connection_options","CORL::Node::Fog","CORL/Node/Fog.html#method-i-connection_options","()",""],["connection_options=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-connection_options-3D","(options)",""],["create","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-create","(options = {})",""],["create","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-create","(options = {}, &code)",""],["create","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-create","(options = {})",""],["create","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-create","(options = {})",""],["create","CORL::Node::AWS","CORL/Node/AWS.html#method-i-create","(options = {})",""],["create","CORL::Node::Fog","CORL/Node/Fog.html#method-i-create","(options = {})",""],["create","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-create","(options = {})",""],["create","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-create","(options = {})",""],["create","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-create","(options = {})",""],["create","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-create","(options = {})",""],["create_config","CORL::Node::AWS","CORL/Node/AWS.html#method-i-create_config","()",""],["create_config","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-create_config","()",""],["create_fact","CORL::Facade","CORL/Facade.html#method-i-create_fact","(name, value, weight = 1000)",""],["create_fact","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-create_fact","(name, value, reset = false)",""],["create_image","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-create_image","(options = {})",""],["create_image","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-create_image","(options = {}, &code)",""],["create_image","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-create_image","(name, options = {})",""],["create_image","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-create_image","(options = {})",""],["create_image","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-create_image","(options = {})",""],["create_image","CORL::Node::Fog","CORL/Node/Fog.html#method-i-create_image","(options = {})",""],["create_image","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-create_image","(options = {})",""],["create_image","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-create_image","(options = {})",""],["create_image","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-create_image","(options = {})",""],["create_machine","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-create_machine","(name, provider, options = {})",""],["created?","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-created-3F","()",""],["created?","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-created-3F","()",""],["created?","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-created-3F","()",""],["created?","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-created-3F","()",""],["custom_facts","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-custom_facts","()",""],["custom_facts=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-custom_facts-3D","(facts)",""],["debug","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-debug","(message)",""],["debug_lookup","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-debug_lookup","(config, property, value, label)",""],["debug_resource","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-debug_resource","(config, title, properties)",""],["default","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-default","(default = {})",""],["default=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-default-3D","(default)",""],["defaults","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-defaults","(defaults, options = {})",""],["delete","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-delete","(keys, options = {})",""],["delete_attachments","CORL::Configuration::File","CORL/Configuration/File.html#method-i-delete_attachments","(ids, options = {})",""],["delete_attachments","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-delete_attachments","(type, ids, options = {})",""],["delete_attachments","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-delete_attachments","(ids, options = {})",""],["delete_keys","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-delete_keys","()",""],["describe","Nucleon::Action::Cloud::Create","Nucleon/Action/Cloud/Create.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Hiera","Nucleon/Action/Cloud/Hiera.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Images","Nucleon/Action/Cloud/Images.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Inspect","Nucleon/Action/Cloud/Inspect.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Machines","Nucleon/Action/Cloud/Machines.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Regions","Nucleon/Action/Cloud/Regions.html#method-c-describe","()",""],["describe","Nucleon::Action::Cloud::Vagrantfile","Nucleon/Action/Cloud/Vagrantfile.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Authorize","Nucleon/Action/Node/Authorize.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Bootstrap","Nucleon/Action/Node/Bootstrap.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Build","Nucleon/Action/Node/Build.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Destroy","Nucleon/Action/Node/Destroy.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Exec","Nucleon/Action/Node/Exec.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Facts","Nucleon/Action/Node/Facts.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::IP","Nucleon/Action/Node/IP.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Image","Nucleon/Action/Node/Image.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Keypair","Nucleon/Action/Node/Keypair.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Lookup","Nucleon/Action/Node/Lookup.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Provision","Nucleon/Action/Node/Provision.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Reboot","Nucleon/Action/Node/Reboot.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Revoke","Nucleon/Action/Node/Revoke.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::SSH","Nucleon/Action/Node/SSH.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Seed","Nucleon/Action/Node/Seed.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Start","Nucleon/Action/Node/Start.html#method-c-describe","()",""],["describe","Nucleon::Action::Node::Stop","Nucleon/Action/Node/Stop.html#method-c-describe","()",""],["destroy","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-destroy","(options = {})",""],["destroy","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-destroy","(options = {}, &code)",""],["destroy","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-destroy","(options = {})",""],["destroy","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-destroy","(options = {})",""],["destroy","CORL::Node::Fog","CORL/Node/Fog.html#method-i-destroy","(options = {})",""],["destroy","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-destroy","(options = {})",""],["destroy","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-destroy","(options = {})",""],["destroy","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-destroy","(options = {})",""],["directory","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-directory","()",""],["directory","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-directory","()",""],["directory","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-directory","()",""],["directory=","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-directory-3D","(directory)",""],["download","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-download","(remote_path, local_path, options = {}, &code)",""],["download","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-download","(remote_path, local_path, options = {}, &code)",""],["download","CORL::Node::Fog","CORL/Node/Fog.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-download","(remote_path, local_path, options = {})",""],["download","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-download","(remote_path, local_path, options = {})",""],["each_module","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-each_module","(options = {}, &code)",""],["each_node_config","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-each_node_config","(provider = nil)",""],["element","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-element","(default = '')",""],["element=","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-element-3D","(element)",""],["ensure_environment","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-ensure_environment","(node)",""],["ensure_network","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-ensure_network","(network, &block)",""],["ensure_node","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-ensure_node","(node, &block)",""],["ensure_ready","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-ensure_ready","(options = {})",""],["ensure_security_group","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-ensure_security_group","(group_name, from_port, to_port = nil, options = {})",""],["env","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-env","()",""],["env","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-env","()",""],["exec","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-exec","(commands, options = {}, &code)",""],["exec","CORL::Node::Fog","CORL/Node/Fog.html#method-i-exec","(options = {})",""],["exec","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-exec","(options = {})",""],["exec","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-exec","(commands, options = {})",""],["exec","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-exec","(options = {})",""],["exec_options","CORL::Node::Fog","CORL/Node/Fog.html#method-i-exec_options","(name, options = {})",""],["exec_options","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-exec_options","(name, options = {})",""],["execute","Nucleon::Action::Cloud::Create","Nucleon/Action/Cloud/Create.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Hiera","Nucleon/Action/Cloud/Hiera.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Images","Nucleon/Action/Cloud/Images.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Inspect","Nucleon/Action/Cloud/Inspect.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Machines","Nucleon/Action/Cloud/Machines.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Regions","Nucleon/Action/Cloud/Regions.html#method-i-execute","()",""],["execute","Nucleon::Action::Cloud::Vagrantfile","Nucleon/Action/Cloud/Vagrantfile.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Authorize","Nucleon/Action/Node/Authorize.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Bootstrap","Nucleon/Action/Node/Bootstrap.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Build","Nucleon/Action/Node/Build.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Destroy","Nucleon/Action/Node/Destroy.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Exec","Nucleon/Action/Node/Exec.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Facts","Nucleon/Action/Node/Facts.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::IP","Nucleon/Action/Node/IP.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Image","Nucleon/Action/Node/Image.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Keypair","Nucleon/Action/Node/Keypair.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Lookup","Nucleon/Action/Node/Lookup.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Provision","Nucleon/Action/Node/Provision.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Reboot","Nucleon/Action/Node/Reboot.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Revoke","Nucleon/Action/Node/Revoke.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::SSH","Nucleon/Action/Node/SSH.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Seed","Nucleon/Action/Node/Seed.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Start","Nucleon/Action/Node/Start.html#method-i-execute","()",""],["execute","Nucleon::Action::Node::Stop","Nucleon/Action/Node/Stop.html#method-i-execute","()",""],["execute","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-execute","(use_network = true, &code)",""],["execute","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-execute","()",""],["execute_remote","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-execute_remote","(node, network, op, data)",""],["extract_hostnames","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-i-extract_hostnames","(hostname)",""],["fact","CORL::Facade","CORL/Facade.html#method-i-fact","(name)",""],["fact","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-fact","(name, reset = false)",""],["fact_var","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-fact_var","()",""],["fact_var","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-fact_var","()",""],["fact_var=","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-fact_var-3D","(facts)",""],["fact_var=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-fact_var-3D","(facts)",""],["facts","CORL::Facade","CORL/Facade.html#method-i-facts","(reset = false)",""],["facts","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-facts","(reset = false, clone = true)",""],["facts","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-facts","(reset = false, clone = true)",""],["fetch_project","CORL::Configuration::File","CORL/Configuration/File.html#method-i-fetch_project","(options = {})",""],["filter_output","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-filter_output","(type, data)",""],["filter_output","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-filter_output","(type, data)",""],["finalize!","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-i-finalize-21","()",""],["find","Puppet::Indirector::Corl","Puppet/Indirector/Corl.html#method-i-find","(request)",""],["find_profiles","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-find_profiles","(node, reset = false)",""],["gateway","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-gateway","(index = :first, reset = false)",""],["gateway=","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-gateway-3D","(gateway)",""],["get_puppet_node","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-get_puppet_node","(environment)",""],["group","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-group","()",""],["handle","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-handle","(msg)",""],["has_nodes?","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-has_nodes-3F","(provider = nil)",""],["hiera","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera","(reset = false)",""],["hiera_configuration","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_configuration","(local_facts = {})",""],["hiera_lookup_prefix","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_lookup_prefix","()",""],["hiera_override_dir","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_override_dir","()",""],["hiera_override_dir","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-hiera_override_dir","()",""],["hiera_override_dir","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-hiera_override_dir","()",""],["hiera_var","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_var","()",""],["hiera_var","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-hiera_var","()",""],["hiera_var","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-hiera_var","()",""],["hiera_var=","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-hiera_var-3D","(hiera)",""],["hiera_var=","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-hiera_var-3D","(hiera)",""],["hiera_var=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-hiera_var-3D","(hiera)",""],["home","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-home","()",""],["home","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-home","(env_var = 'HOME', reset = false)",""],["hostname","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-hostname","()",""],["hostname","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-hostname","()",""],["hostname","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-hostname","()",""],["id","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-id","(name = nil)",""],["id","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-id","(name = nil)",""],["id","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-id","(reset = false)",""],["id_joiner","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-id_joiner","()",""],["id_joiner","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-id_joiner","()",""],["identities","CORL::Builder::Identity","CORL/Builder/Identity.html#method-i-identities","()",""],["ignore","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-ignore","(files)",""],["ignore","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-ignore","(files)",""],["ignore","Nucleon::Action::Cloud::Hiera","Nucleon/Action/Cloud/Hiera.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Cloud::Images","Nucleon/Action/Cloud/Images.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Cloud::Machines","Nucleon/Action/Cloud/Machines.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Cloud::Regions","Nucleon/Action/Cloud/Regions.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Bootstrap","Nucleon/Action/Node/Bootstrap.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Destroy","Nucleon/Action/Node/Destroy.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Image","Nucleon/Action/Node/Image.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Keypair","Nucleon/Action/Node/Keypair.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Reboot","Nucleon/Action/Node/Reboot.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::SSH","Nucleon/Action/Node/SSH.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Spawn","Nucleon/Action/Node/Spawn.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Start","Nucleon/Action/Node/Start.html#method-i-ignore","()",""],["ignore","Nucleon::Action::Node::Stop","Nucleon/Action/Node/Stop.html#method-i-ignore","()",""],["image","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-image","()",""],["image","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-image","()",""],["image","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-image","()",""],["image","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-image","(reset = false)",""],["image=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-image-3D","(image)",""],["image_id","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-image_id","(image)",""],["image_id","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-image_id","(image)",""],["image_search_text","CORL::Node::AWS","CORL/Node/AWS.html#method-i-image_search_text","(image)",""],["image_search_text","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-image_search_text","(image)",""],["image_search_text","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-image_search_text","(image)",""],["image_search_text","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-image_search_text","(image)",""],["images","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-images","()",""],["images","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-images","()",""],["images","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-images","(search_terms = [], options = {})",""],["import","CORL::Build","CORL/Build.html#method-i-import","(config)",""],["import","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-import","(properties, options = {})",""],["import","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-import","(files, options = {})",""],["import","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-import","(files, options = {})",""],["import","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-import","(properties, options = {})",""],["include","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-include","(resource_name, properties = {}, options = {})",""],["info","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-info","(default = {})",""],["info","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-info","(default = {})",""],["info=","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-info-3D","(info)",""],["info=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-info-3D","(info)",""],["init_network","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-init_network","(path = nil)",""],["init_node","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-init_node","(node, options = {})",""],["init_puppet","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-init_puppet","(node, profiles)",""],["init_server","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-init_server","()",""],["init_server","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-init_server","()",""],["init_server","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-init_server","()",""],["init_shares","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-init_shares","()",""],["init_ssh","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-init_ssh","(ssh_port)",""],["init_ssh_session","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-init_ssh_session","(reset = false, tries = 12, sleep_secs = 5)",""],["initialized?","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-initialized-3F","(options = {})",""],["inspect","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-inspect","()",""],["internal_path","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-internal_path","(directory)",""],["key_cache_directory","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-key_cache_directory","()",""],["key_config","CORL::Node::Fog","CORL/Node/Fog.html#method-i-key_config","()",""],["keypair","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair","(reset = false)",""],["keypair","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-keypair","()",""],["keypair=","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair-3D","(options)",""],["keypair=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-keypair-3D","(keypair)",""],["keypair_clean","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_clean","()",""],["keypair_config","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_config","()",""],["keypair_ignore","CORL::Mixin::Action::Keypair","CORL/Mixin/Action/Keypair.html#method-i-keypair_ignore","()",""],["keypair_name","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-keypair_name","()",""],["lib_path","CORL","CORL.html#method-c-lib_path","()",""],["load","CORL::Configuration::File","CORL/Configuration/File.html#method-i-load","(options = {})",""],["load","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-load","()",""],["load","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-load","()",""],["load","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-load","()",""],["load","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-load","(options = {})",""],["load","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-load","()",""],["load","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-load","(options = {})",""],["load_network","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-load_network","(directory)",""],["local?","CORL::Node::Local","CORL/Node/Local.html#method-i-local-3F","()",""],["local?","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-local-3F","()",""],["local_machine","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-local_machine","()",""],["local_machine=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-local_machine-3D","(local_machine)",""],["local_node","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-local_node","(require_new = false)",""],["localize","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-localize","()",""],["locations","CORL::Build","CORL/Build.html#method-i-locations","()",""],["logger","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-logger","()",""],["lookup","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup","(properties, default = nil, options = {})",""],["lookup","CORL::Plugin","CORL/Plugin.html#method-i-lookup","(property, default = nil, options = {})",""],["lookup","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-lookup","(property, default = nil, options = {})",""],["lookup","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-lookup","(property, default = nil, options = {})",""],["lookup","Hiera::Backend","Hiera/Backend.html#method-c-lookup","(key, default, scope, order_override, resolution_type)","<p>NOTE: This method is overridden so we can collect accumulated hiera\nparameters and their values on a …\n"],["lookup_array","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup_array","(properties, default = [], options = {})",""],["lookup_array","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-lookup_array","(property, default = [], options = {})",""],["lookup_config","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-lookup_config","(property, default = nil, options = {})",""],["lookup_facts","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-lookup_facts","()",""],["lookup_hash","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-lookup_hash","(properties, default = {}, options = {})",""],["lookup_hash","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-lookup_hash","(property, default = {}, options = {})",""],["machine","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine","()",""],["machine=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine-3D","(machine)",""],["machine_config","CORL::Node::AWS","CORL/Node/AWS.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Fog","CORL/Node/Fog.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-machine_config","()",""],["machine_config","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-machine_config","()",""],["machine_config","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine_config","()",""],["machine_type","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-machine_type","()",""],["machine_type","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-machine_type","()",""],["machine_type","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-machine_type","()",""],["machine_type","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine_type","(reset = false)",""],["machine_type_id","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-machine_type_id","(machine_type)",""],["machine_type_id","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine_type_id","(machine_type)",""],["machine_types","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-machine_types","()",""],["machine_types","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-machine_types","()",""],["machine_types","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-machine_types","()",""],["machine_types","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-machine_types","()",""],["manage","CORL::Build","CORL/Build.html#method-i-manage","(plugin_type, options = {})",""],["message","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-message","(default = '')",""],["message=","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-message-3D","(message)",""],["method_missing","CORL::Build","CORL/Build.html#method-i-method_missing","(method, *args, &code)",""],["method_missing","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-method_missing","(method, *args, &code)",""],["namespace","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-c-namespace","()",""],["namevar","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-namevar","(type_name, resource_name)",""],["network","CORL::Facade","CORL/Facade.html#method-i-network","(name, options = {}, provider = nil)",""],["network","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-c-network","()",""],["network","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-network","()",""],["network=","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-network-3D","(network)",""],["network_settings","CORL::Mixin::Macro::NetworkSettings","CORL/Mixin/Macro/NetworkSettings.html#method-i-network_settings","(_type)",""],["networks","CORL::Facade","CORL/Facade.html#method-i-networks","(data, build_hash = false, keep_array = false)",""],["new","CORL::Build","CORL/Build.html#method-c-new","()",""],["new","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-c-new","(group, info, title, properties = {})",""],["new","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-c-new","(type_info, default = {})",""],["new","Puppet::Indirector::Corl","Puppet/Indirector/Corl.html#method-c-new","(*args)",""],["new","VagrantPlugins::CORL::BaseAction","VagrantPlugins/CORL/BaseAction.html#method-c-new","(app, env)",""],["new","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-c-new","()",""],["new","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-c-new","(machine, config)",""],["new_machine","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-new_machine","(id)",""],["node","CORL::Facade","CORL/Facade.html#method-i-node","(name, options = {}, provider = nil)",""],["node","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-node","()",""],["node","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-c-node","()",""],["node=","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-node-3D","(node)",""],["node_by_ip","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-node_by_ip","(public_ip, require_new = false)",""],["node_config","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-node_config","()",""],["node_exec","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-node_exec","()",""],["node_groups","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-node_groups","()",""],["node_ignore","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-node_ignore","()",""],["node_info","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-node_info","(references, default_provider = nil)",""],["nodes","CORL::Facade","CORL/Facade.html#method-i-nodes","(data, build_hash = false, keep_array = false)",""],["nodes_by_reference","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-nodes_by_reference","(references, default_provider = nil, require_new = false)",""],["normalize","CORL::Builder::Identity","CORL/Builder/Identity.html#method-i-normalize","(reload)",""],["normalize","CORL::Builder::Package","CORL/Builder/Package.html#method-i-normalize","(reload)",""],["normalize","CORL::Configuration::File","CORL/Configuration/File.html#method-i-normalize","(reload)",""],["normalize","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-normalize","(reload)",""],["normalize","CORL::Mixin::Lookup","CORL/Mixin/Lookup.html#method-i-normalize","(data, override = nil, options = {})",""],["normalize","CORL::Network::CORL","CORL/Network/CORL.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::AWS","CORL/Node/AWS.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Fog","CORL/Node/Fog.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Local","CORL/Node/Local.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-normalize","(reload)",""],["normalize","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Builder","CORL/Plugin/Builder.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-normalize","(reload)",""],["normalize","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-normalize","(reload)",""],["normalize","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-normalize","(reload)",""],["normalize","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-normalize","(type_name, resources, options = {})",""],["normalize","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-normalize","(reload)",""],["operation","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-operation","(default = '')",""],["operation=","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-operation-3D","(operation)",""],["package_gateways","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-package_gateways","(node, reset = false)",""],["packages","CORL::Builder::Package","CORL/Builder/Package.html#method-i-packages","()",""],["parse_params","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-parse_params","(data)",""],["private_ip","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-private_ip","()",""],["private_ip","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-private_ip","()",""],["private_ip","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-private_ip","()",""],["private_ip","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-private_ip","(reset = false)",""],["private_key","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-private_key","()",""],["private_key=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-private_key-3D","(private_key)",""],["process","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-process","(options = {})",""],["process_environment","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-process_environment","(settings, environment = nil)",""],["process_environment","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-process_environment","(settings, environment = nil)",""],["profile_dependencies","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-profile_dependencies","(node, profiles)",""],["profile_id","CORL::Plugin","CORL/Plugin.html#method-i-profile_id","(package, profile)",""],["profiles","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-profiles","()",""],["profiles=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-profiles-3D","(profiles)",""],["project","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-project","()",""],["provision","CORL::Plugin","CORL/Plugin.html#method-i-provision","(node, profiles, options = {})",""],["provision","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-provision","(node, profiles, options = {})",""],["provision","VagrantPlugins::CORL::Provisioner::CORL","VagrantPlugins/CORL/Provisioner/CORL.html#method-i-provision","()",""],["provisioner","CORL::Facade","CORL/Facade.html#method-i-provisioner","(options, provider = nil)",""],["provisioner_info","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-provisioner_info","()",""],["provisioners","CORL::Facade","CORL/Facade.html#method-i-provisioners","(data, build_hash = false, keep_array = false)",""],["provisioners","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-provisioners","()",""],["public_ip","CORL::Facade","CORL/Facade.html#method-i-public_ip","()",""],["public_ip","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-public_ip","()",""],["public_ip","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-public_ip","()",""],["public_ip","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-public_ip","()",""],["public_ip","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-public_ip","(reset = false)",""],["public_key","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-public_key","()",""],["public_key=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-public_key-3D","(public_key)",""],["ready","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-ready","(default = false)",""],["refresh_config","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-refresh_config","()",""],["region","CORL::Node::Fog","CORL/Node/Fog.html#method-i-region","()",""],["region=","CORL::Node::Fog","CORL/Node/Fog.html#method-i-region-3D","(region)",""],["regions","CORL::Node::AWS","CORL/Node/AWS.html#method-i-regions","()",""],["regions","CORL::Node::Fog","CORL/Node/Fog.html#method-i-regions","()",""],["regions","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-regions","()",""],["register","CORL::Build","CORL/Build.html#method-i-register","(type, plural = nil)",""],["register","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-register","(options = {})",""],["register","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-register","(options = {})",""],["register","CORL::Vagrant::Config","CORL/Vagrant/Config.html#method-c-register","(directory, config, &code)","<p>Gateway CORL configurator for Vagrant.\n"],["register_ids","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-c-register_ids","()",""],["register_plugins","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-register_plugins","(options = {})",""],["reload","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-reload","(options = {}, &code)",""],["reload","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-reload","(options = {})",""],["reload","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-reload","(options = {})",""],["reload","CORL::Node::Fog","CORL/Node/Fog.html#method-i-reload","(options = {})",""],["reload","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-reload","(options = {})",""],["reload","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-reload","(options = {})",""],["reload","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-reload","(options = {})",""],["reload","Vagrant::Vagrantfile","Vagrant/Vagrantfile.html#method-i-reload","()",""],["remote","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-remote","(name)",""],["remote","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-remote","(name)",""],["remove","CORL::Configuration::File","CORL/Configuration/File.html#method-i-remove","(options = {})",""],["remove","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-remove","(options = {})",""],["remove_location","CORL::Build","CORL/Build.html#method-i-remove_location","(provider, name = nil)",""],["remove_plugin","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-remove_plugin","()",""],["remove_plugin","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-remove_plugin","()",""],["remove_plugin","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-remove_plugin","()",""],["render","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-c-render","(resource_info, options = {})",""],["render","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-render","(options = {})",""],["render","Nucleon::Event::Puppet","Nucleon/Event/Puppet.html#method-i-render","()",""],["render_assignment","Nucleon::Template::Environment","Nucleon/Template/Environment.html#method-i-render_assignment","(name, value)",""],["render_image","CORL::Node::AWS","CORL/Node/AWS.html#method-i-render_image","(image)",""],["render_image","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-render_image","(image)",""],["render_image","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-render_image","(image)",""],["render_image","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-render_image","(image)",""],["render_machine_type","CORL::Node::AWS","CORL/Node/AWS.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-render_machine_type","(machine_type)",""],["render_machine_type","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-render_machine_type","(machine_type)",""],["render_name","Nucleon::Template::Environment","Nucleon/Template/Environment.html#method-i-render_name","(name)",""],["render_processed","Nucleon::Template::Environment","Nucleon/Template/Environment.html#method-i-render_processed","(data)",""],["render_value","Nucleon::Template::Environment","Nucleon/Template/Environment.html#method-i-render_value","(value)",""],["resource","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-resource","(name = nil, capitalize = false)",""],["resource","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-resource","(name = nil, capitalize = false)",""],["resource_joiner","CORL::Mixin::Builder::Global","CORL/Mixin/Builder/Global.html#method-i-resource_joiner","()",""],["resource_joiner","CORL::Mixin::Builder::Instance","CORL/Mixin/Builder/Instance.html#method-i-resource_joiner","()",""],["resources","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-resources","(default = {})",""],["resources=","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-resources-3D","(resources)",""],["router","CORL::Configuration::File","CORL/Configuration/File.html#method-i-router","()",""],["run","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-run","(action, options = {}, symbolize_keys = true)",""],["run","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-run","()",""],["running?","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-running-3F","()",""],["running?","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-running-3F","()",""],["running?","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-running-3F","()",""],["running?","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-running-3F","()",""],["save","CORL::Configuration::File","CORL/Configuration/File.html#method-i-save","(options = {})",""],["save","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-save","(options = {})",""],["save","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-save","(options = {})",""],["save","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-save","(options = {})",""],["save","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-save","(options = {})",""],["scope","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-i-scope","()",""],["search","CORL::Configuration::File","CORL/Configuration/File.html#method-i-search","()",""],["search_files","CORL::Configuration::File","CORL/Configuration/File.html#method-i-search_files","()",""],["select_largest","CORL::Configuration::File","CORL/Configuration/File.html#method-i-select_largest","(router)",""],["send_files","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-send_files","(local_path, remote_path, files = nil, permission = '0644', &code)",""],["separate","CORL::Configuration::File","CORL/Configuration/File.html#method-i-separate","()","<p>properties = values\n<p>to\n<p>file_data[key…] = config\n"],["server","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-server","()",""],["server","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-server","()",""],["server=","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-server-3D","(id)",""],["server=","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-server-3D","(id)",""],["set","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-set","(keys, value = '', options = {})",""],["set_command","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-set_command","()",""],["set_connection","CORL::Machine::AWS","CORL/Machine/AWS.html#method-i-set_connection","()",""],["set_connection","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-set_connection","()",""],["set_connection","CORL::Machine::Rackspace","CORL/Machine/Rackspace.html#method-i-set_connection","()",""],["set_identity","CORL::Builder::Identity","CORL/Builder/Identity.html#method-i-set_identity","(name, directory)",""],["set_location","CORL::Build","CORL/Build.html#method-i-set_location","(provider, name, directory)",""],["set_location","CORL::Configuration::File","CORL/Configuration/File.html#method-i-set_location","(directory)",""],["set_location","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-set_location","(directory)",""],["set_package","CORL::Builder::Package","CORL/Builder/Package.html#method-i-set_package","(name, directory)",""],["set_remote","CORL::Plugin::Configuration","CORL/Plugin/Configuration.html#method-i-set_remote","(name, location)",""],["set_remote","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-set_remote","(name, location)",""],["setup","Fog::Compute::AWS::Server","Fog/Compute/AWS/Server.html#method-i-setup","(credentials = {})",""],["setup","Fog::Compute::RackspaceV2::Server","Fog/Compute/RackspaceV2/Server.html#method-i-setup","(credentials = {})",""],["shares","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-shares","()",""],["shares=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-shares-3D","(shares)",""],["ssh","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-ssh","()",""],["ssh=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-ssh-3D","(ssh)",""],["ssh_download","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_download","(remote_path, local_path, options = {}, &code)",""],["ssh_exec","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_exec","(commands, options = {}, &code)",""],["ssh_path","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-ssh_path","(home_env_var = 'HOME', reset = false)",""],["ssh_port","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-ssh_port","()",""],["ssh_port=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-ssh_port-3D","(ssh_port)",""],["ssh_terminal","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_terminal","(user, options = {})",""],["ssh_upload","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_upload","(local_path, remote_path, options = {}, &code)",""],["ssh_wait_for_ready","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-ssh_wait_for_ready","()",""],["ssh_wait_for_ready","CORL::Mixin::Machine::SSH","CORL/Mixin/Machine/SSH.html#method-i-ssh_wait_for_ready","()",""],["start","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-start","(options = {})",""],["start","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-start","(options = {})",""],["start","CORL::Node::AWS","CORL/Node/AWS.html#method-i-start","(options = {})",""],["start","CORL::Node::Fog","CORL/Node/Fog.html#method-i-start","(options = {})",""],["start","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-start","(options = {})",""],["start","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-start","(options = {})",""],["start","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-start","(options = {})",""],["start","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-start","(options = {})",""],["start_machine","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-start_machine","(options)",""],["state","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-state","()",""],["state","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-state","()",""],["state","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-state","()",""],["state","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-state","(reset = false)",""],["state","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-state","()",""],["state","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-state","(reset = false)",""],["status","CORL::Provisioner::Puppetnode","CORL/Provisioner/Puppetnode.html#method-c-status","()",""],["stop","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-stop","(options = {})",""],["stop","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-stop","(options = {})",""],["stop","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-stop","(options = {})",""],["stop","CORL::Node::Fog","CORL/Node/Fog.html#method-i-stop","(options = {})",""],["stop","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-stop","(options = {})",""],["stop","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-stop","(options = {})",""],["stop","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-stop","(options = {})",""],["suitable?","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-suitable-3F","()",""],["supported_profiles","CORL::Plugin::Provisioner","CORL/Plugin/Provisioner.html#method-i-supported_profiles","(node, profile_names = nil)",""],["synopsis","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-c-synopsis","()",""],["tag","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-tag","(tags, append = true)",""],["terminal","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-terminal","(user, options = {})",""],["terminal","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-terminal","(options = {})",""],["test_node","CORL::Plugin::Network","CORL/Plugin/Network.html#method-i-test_node","(provider, options = {})",""],["title","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-title","(default = '')",""],["title=","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-title-3D","(info)",""],["to_name","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-to_name","(name)",""],["translate","CORL::Plugin","CORL/Plugin.html#method-c-translate","(data)",""],["translate","CORL::Plugin::Node","CORL/Plugin/Node.html#method-c-translate","(data)",""],["translate","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-translate","(options = {})",""],["translate","CORL::Util::Puppet::ResourceGroup","CORL/Util/Puppet/ResourceGroup.html#method-i-translate","(resources, options = {})",""],["translate_reference","CORL::Plugin","CORL/Plugin.html#method-c-translate_reference","(reference)",""],["translate_reference","CORL::Plugin","CORL/Plugin.html#method-i-translate_reference","(reference)",""],["translate_reference","CORL::Plugin::Node","CORL/Plugin/Node.html#method-c-translate_reference","(reference)",""],["translate_reference","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-translate_reference","(reference)",""],["translate_resource_refs","CORL::Util::Puppet::Resource","CORL/Util/Puppet/Resource.html#method-i-translate_resource_refs","(resource_refs, options = {})",""],["translate_state","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-translate_state","(state)",""],["type_info","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-type_info","(type_name, options = {})",""],["type_name","CORL::Util::Puppet","CORL/Util/Puppet.html#method-c-type_name","(value)",""],["update_project","CORL::Configuration::File","CORL/Configuration/File.html#method-i-update_project","(files = [], options = {})",""],["upload","CORL::Machine::Fog","CORL/Machine/Fog.html#method-i-upload","(local_path, remote_path, options = {}, &code)",""],["upload","CORL::Machine::Physical","CORL/Machine/Physical.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Machine::Vagrant","CORL/Machine/Vagrant.html#method-i-upload","(local_path, remote_path, options = {}, &code)",""],["upload","CORL::Node::Fog","CORL/Node/Fog.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Plugin::Machine","CORL/Plugin/Machine.html#method-i-upload","(local_path, remote_path, options = {})",""],["upload","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-upload","(local_path, remote_path, options = {})",""],["usable_image?","CORL::Node::AWS","CORL/Node/AWS.html#method-i-usable_image-3F","(image)",""],["usable_image?","CORL::Node::Rackspace","CORL/Node/Rackspace.html#method-i-usable_image-3F","(image)",""],["usable_image?","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-usable_image-3F","(image)",""],["user","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-user","()",""],["user=","CORL::Plugin::Node","CORL/Plugin/Node.html#method-i-user-3D","(user)",""],["vagrant?","CORL::Facade","CORL/Facade.html#method-i-vagrant-3F","()",""],["vagrant_config","CORL::Facade","CORL/Facade.html#method-i-vagrant_config","(directory, config, &code)",""],["vagrant_config_loaded?","CORL::Facade","CORL/Facade.html#method-i-vagrant_config_loaded-3F","()",""],["validate","Nucleon::Plugin::CloudAction","Nucleon/Plugin/CloudAction.html#method-i-validate","(node = nil, network = nil)",""],["validate","VagrantPlugins::CORL::Config::CORL","VagrantPlugins/CORL/Config/CORL.html#method-i-validate","(machine)",""],["vm","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-vm","()",""],["vm=","CORL::Node::Vagrant","CORL/Node/Vagrant.html#method-i-vm-3D","(vm)",""],["vm_machine","VagrantPlugins::CORL::Command::Launcher","VagrantPlugins/CORL/Command/Launcher.html#method-i-vm_machine","(name, provider = nil, refresh = false)",""],["warn","Hiera::Corl_logger","Hiera/Corl_logger.html#method-c-warn","(message)",""],["README","","README_rdoc.html","","<p>## Welcome to CORL (Coral Orchestration and Research Library)\n<p>CORL is a cloud application framework and …\n"]]}}