Skip to content
Snippets Groups Projects
Commit 95d90ef3 authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman
Browse files

Removed invalid state `enabled` from available choices.

parent cf0b7100
No related branches found
No related tags found
No related merge requests found
......@@ -142,7 +142,7 @@ options:
state:
description: State to ensure
default: present
choices: ["present", "absent", "enabled", "disabled"]
choices: ["present", "absent", "disabled"]
author:
- Rafael Jeffman
"""
......@@ -365,8 +365,7 @@ def init_ansible_module():
choices=["member", "service"]),
# state
state=dict(type="str", default="present",
choices=["present", "absent",
"enabled", "disabled"]),
choices=["present", "absent", "disabled"]),
),
supports_check_mode=True,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment