Skip to content

Commit f6a7cb6

Browse files
changed datatype in module_executor
1 parent 3b75ade commit f6a7cb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/module_utils/module_executor.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ def __init__(self, resource_name, supports_check_mode=True):
8181

8282
consider_non_updatable_arguments = dict(
8383
consider_non_updatable_arguments=dict(
84-
type='bool',
85-
choices=[True, False],
86-
default=True,
84+
type='str',
85+
choices=["yes", "no"],
86+
default="no",
8787
required=False,
8888
)
8989
)

0 commit comments

Comments
 (0)