Fix missing key error when updating existing virtual network.

This commit is contained in:
chouseknecht 2016-05-26 11:48:58 -04:00
parent ddb0b53c66
commit 97f16b52cf
No known key found for this signature in database
GPG key ID: 78F1698C5705A81B

View file

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