Skip to content

Commit

Permalink
Make plugin work with native Jinja2
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik-Lamers1 committed Aug 26, 2024
1 parent 0b7e826 commit ad8789e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
type: str
required: true
value:
type: raw
type: dict
description:
- values to update
delete:
Expand Down Expand Up @@ -84,7 +84,7 @@
description:
- values to replace
required: true
type: raw
type: dict
datastore:
type: str
description:
Expand Down Expand Up @@ -132,7 +132,7 @@ def main():
"required": False,
"options": {
"path": {"type": "str", "required": True},
"value": {"type": "raw"},
"value": {"type": "dict"},
},
},
"delete": {
Expand All @@ -149,7 +149,7 @@ def main():
"required": False,
"options": {
"path": {"type": "str", "required": True},
"value": {"type": "raw", "required": True},
"value": {"type": "dict", "required": True},
},
},
"save_when": {"choices": ["always", "never", "changed"], "default": "never"},
Expand Down

0 comments on commit ad8789e

Please sign in to comment.