Fixes #51324 azure_rm_publicipaddress not idempotent (#53375)

pull/53442/head
Yuwei Zhou 7 years ago committed by Yunge Zhu
parent b906db5f2a
commit b6e669f135

@ -236,7 +236,8 @@ class AzureRMPublicIPAddress(AzureRMModuleBase):
self.log("PIP {0} exists".format(self.name))
if self.state == 'present':
results = pip_to_dict(pip)
if self.domain_name != results['dns_settings'].get('domain_name_label'):
domain_lable = results['dns_settings'].get('domain_name_label')
if self.domain_name is not None and ((self.domain_name or domain_lable) and self.domain_name != domain_lable):
self.log('CHANGED: domain_name_label')
changed = True
results['dns_settings']['domain_name_label'] = self.domain_name

Loading…
Cancel
Save