fog-azure-rm 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/fog/azurerm/requests/compute/create_virtual_machine.rb +2 -2
- data/lib/fog/azurerm/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 92ccf9146fde992f1f6571b2eebd2c81c8cbb78a1318f4458afc0328746537ea
|
4
|
+
data.tar.gz: f644c667506974a7baef2e6ebd9e2d142f8af58ad5e6a432f2f66d88e363cf6f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2a2d73cf128156c1a307688ec9c67426be08265d98a68f58b3ae677eddba8af0f3514d7858d08cb877e6b02001d527b84ff7998233b15f2acf20b164f862b39
|
7
|
+
data.tar.gz: 32fbf587491b632a4d513629936b3d1af2786b072c3a439b3a42039f4dcdbf0acf87c3dfbadedd5c23da9b6b8ec8c61518f9ada29e3c0211edb612432d2573dc
|
data/CHANGELOG.md
CHANGED
@@ -74,7 +74,7 @@ module Fog
|
|
74
74
|
vm_name = vm_config[:name]
|
75
75
|
username = vm_config[:username]
|
76
76
|
password = vm_config[:password]
|
77
|
-
custom_data = vm_config[:custom_data]
|
77
|
+
custom_data = vm_config[:custom_data] unless vm_config[:custom_data].nil?
|
78
78
|
provision_vm_agent = vm_config[:provision_vm_agent]
|
79
79
|
enable_automatic_updates = vm_config[:enable_automatic_updates]
|
80
80
|
disable_password_auth = vm_config[:disable_password_authentication]
|
@@ -86,7 +86,7 @@ module Fog
|
|
86
86
|
os_profile.computer_name = vm_name
|
87
87
|
os_profile.admin_username = username
|
88
88
|
os_profile.admin_password = password
|
89
|
-
os_profile.custom_data = Base64.strict_encode64(custom_data
|
89
|
+
os_profile.custom_data = Base64.strict_encode64(custom_data) unless vm_config[:custom_data].nil?
|
90
90
|
|
91
91
|
if platform.casecmp(WINDOWS).zero?
|
92
92
|
os_profile.windows_configuration = get_windows_config(provision_vm_agent, enable_automatic_updates)
|
data/lib/fog/azurerm/version.rb
CHANGED