From 8fa233ba1ec1d51b6a1ac26d820d6be0685521f7 Mon Sep 17 00:00:00 2001 From: Mark Chappell Date: Fri, 7 Feb 2020 17:13:02 +0100 Subject: [PATCH] aws_az_info: Fix rename deprecaction warning (#67188) --- lib/ansible/modules/cloud/amazon/aws_az_info.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/cloud/amazon/aws_az_info.py b/lib/ansible/modules/cloud/amazon/aws_az_info.py index d59c5ccc626..bccee634415 100644 --- a/lib/ansible/modules/cloud/amazon/aws_az_info.py +++ b/lib/ansible/modules/cloud/amazon/aws_az_info.py @@ -92,8 +92,8 @@ def main(): ) module = AnsibleModule(argument_spec=argument_spec) - if module._name == 'aws_acm_facts': - module.deprecate("The 'aws_az_facts' module has been renamed to 'aws_az_info'", version='2.13') + if module._name == 'aws_az_facts': + module.deprecate("The 'aws_az_facts' module has been renamed to 'aws_az_info'", version='2.14') if not HAS_BOTO3: module.fail_json(msg='boto3 required for this module')