aws_az_info: Fix rename deprecaction warning (#67188)

pull/67188/merge
Mark Chappell 4 years ago committed by GitHub
parent 4a1115785f
commit 8fa233ba1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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')

Loading…
Cancel
Save