route53_facts: add check mode support (#56900)

* route53_facts: add check mode support

* route53_facts: add changelog fragment mentioning check mode support

* route53_facts: alter changelog fragment type from `minor_changes` to `bugfixes`

* Update changelogs/fragments/56900-route53-facts-check-mode.yaml

Co-Authored-By: Felix Fontein <felix@fontein.de>
This commit is contained in:
Yury V. Zaytsev 2019-05-27 23:44:55 +02:00 committed by René Moser
parent 89b73cb535
commit fcfc122205
2 changed files with 3 additions and 0 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- route53_facts - the module did not advertise check mode support, causing it not to be run in check mode.

View file

@ -432,6 +432,7 @@ def main():
module = AnsibleModule(
argument_spec=argument_spec,
supports_check_mode=True,
mutually_exclusive=[
['hosted_zone_method', 'health_check_method'],
],