diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0de465b8c..e9b1a77ce02 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -186,7 +186,8 @@ Ansible Changes By Release https://github.com/ansible/ansible/pull/32986 * Handle sets and datetime objects in inventory sources fixing tracebacks https://github.com/ansible/ansible/pull/32990 - +* Fix for breaking change to Azure Python SDK DNS RecordSet constructor in azure-mgmt-dns==1.2.0 + https://github.com/ansible/ansible/pull/33165 diff --git a/lib/ansible/modules/cloud/azure/azure_rm_dnsrecordset.py b/lib/ansible/modules/cloud/azure/azure_rm_dnsrecordset.py index 87db71ac665..c530cad1d45 100644 --- a/lib/ansible/modules/cloud/azure/azure_rm_dnsrecordset.py +++ b/lib/ansible/modules/cloud/azure/azure_rm_dnsrecordset.py @@ -324,7 +324,6 @@ class AzureRMRecordSet(AzureRMModuleBase): if self.results['changed']: if self.state == 'present': record_set_args = dict( - type=self.record_type, ttl=self.time_to_live )