Set win_rm protocol to the name, not the full ProtocolTypes object (#37499)

This commit is contained in:
Tyler Gregory 2018-03-21 00:37:48 -05:00 committed by Jordan Borean
parent 0214a85382
commit 6dfc82fe3e

View file

@ -630,7 +630,7 @@ class AzureInventory(object):
if machine.os_profile.windows_configuration.win_rm.listeners is not None:
host_vars['windows_rm']['listeners'] = []
for listener in machine.os_profile.windows_configuration.win_rm.listeners:
host_vars['windows_rm']['listeners'].append(dict(protocol=listener.protocol,
host_vars['windows_rm']['listeners'].append(dict(protocol=listener.protocol.name,
certificate_url=listener.certificate_url))
for interface in machine.network_profile.network_interfaces: