Fix missing key error when updating existing virtual network.
This commit is contained in:
parent
ddb0b53c66
commit
97f16b52cf
1 changed files with 1 additions and 1 deletions
|
@ -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']
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue