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:
parent
89b73cb535
commit
fcfc122205
2 changed files with 3 additions and 0 deletions
2
changelogs/fragments/56900-route53-facts-check-mode.yaml
Normal file
2
changelogs/fragments/56900-route53-facts-check-mode.yaml
Normal 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.
|
|
@ -432,6 +432,7 @@ def main():
|
|||
|
||||
module = AnsibleModule(
|
||||
argument_spec=argument_spec,
|
||||
supports_check_mode=True,
|
||||
mutually_exclusive=[
|
||||
['hosted_zone_method', 'health_check_method'],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue