dnszone: Add support for check_mode.

This patch adds support for check_mode to the dnszone management
module, and provides tests to verify the behavior.
This commit is contained in:
Rafael Guterres Jeffman
2021-06-25 09:18:09 -03:00
parent 926134cc36
commit a84071b8a9
2 changed files with 28 additions and 0 deletions

View File

@@ -570,6 +570,7 @@ def main():
argument_spec=get_argument_spec(),
mutually_exclusive=[["name", "name_from_ip"]],
required_one_of=[["name", "name_from_ip"]],
supports_check_mode=True,
).ipa_run()