Remove deprecated ec2_facts (#44536)

* Remove deprecated ec2_facts

* Add changelog
pull/34710/merge
Matt Martz 6 years ago committed by GitHub
parent 5ea7480e90
commit a1febd95b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,2 @@
removed_features:
- ec2_facts - deprecated module removed (https://github.com/ansible/ansible/pull/44536)

@ -541,9 +541,6 @@ def main():
supports_check_mode=True,
)
if module._name == 'ec2_facts':
module.deprecate("The 'ec2_facts' module is being renamed 'ec2_metadata_facts'", version=2.7)
ec2_metadata_facts = Ec2Metadata(module).run()
ec2_metadata_facts_result = dict(changed=False, ansible_facts=ec2_metadata_facts)

Loading…
Cancel
Save