1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix missing key error when updating existing virtual network.

This commit is contained in:
chouseknecht 2016-05-26 11:48:58 -04:00 committed by Matt Clay
parent 375884464e
commit 0c5eac4243

View file

@ -333,7 +333,7 @@ class AzureRMVirtualNetwork(AzureRMModuleBase):
), ),
tags=results['tags'] tags=results['tags']
) )
if results['dns_servers']: if results.get('dns_servers'):
vnet.dhcp_options = DhcpOptions( vnet.dhcp_options = DhcpOptions(
dns_servers=results['dns_servers'] dns_servers=results['dns_servers']
) )