diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:24:57 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:24:57 +0000 |
commit | 6321bd49c49eb2bb436cf7fb4842c4c424198de7 (patch) | |
tree | f34b66b4551dfe468bbcb29d0dcec5384556543b /examples/collection/plugins/modules/deep | |
parent | Adding debian version 6.17.2-3. (diff) | |
download | ansible-lint-6321bd49c49eb2bb436cf7fb4842c4c424198de7.tar.xz ansible-lint-6321bd49c49eb2bb436cf7fb4842c4c424198de7.zip |
Merging upstream version 24.6.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'examples/collection/plugins/modules/deep')
-rw-r--r-- | examples/collection/plugins/modules/deep/beta.py | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/examples/collection/plugins/modules/deep/beta.py b/examples/collection/plugins/modules/deep/beta.py deleted file mode 100644 index ffd9ff8..0000000 --- a/examples/collection/plugins/modules/deep/beta.py +++ /dev/null @@ -1,44 +0,0 @@ -"""An ansible test module.""" - - -DOCUMENTATION = """ -module: mod_2 -author: -- test -short_description: This is a test module -description: -- This is a test module -version_added: 1.0.0 -options: - foo: - description: - - Dummy option I(foo) - type: str - bar: - description: - - Dummy option I(bar) - default: candidate - type: str - choices: - - candidate - - running - aliases: - - bam -notes: -- This is a dummy module -""" - -EXAMPLES = """ -- name: test task-1 - company_name.coll_1.mod_2: - foo: some value - bar: candidate -""" - -RETURN = """ -baz: - description: test return 1 - returned: success - type: list - sample: ['a','b'] -""" |