summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/config/lookup_plugins
diff options
context:
space:
mode:
authorBrian Coca <bcoca@users.noreply.github.com>2021-06-22 18:21:59 +0200
committerGitHub <noreply@github.com>2021-06-22 18:21:59 +0200
commit50b6d28ee168fd8a7cdc80e11aadef745fe6711b (patch)
tree3fb0fe1aafeaa3acead6ca5581859cc9b16f097c /test/integration/targets/config/lookup_plugins
parentImplement async callbacks (#74953) (diff)
downloadansible-50b6d28ee168fd8a7cdc80e11aadef745fe6711b.tar.xz
ansible-50b6d28ee168fd8a7cdc80e11aadef745fe6711b.zip
Config init+ (#74914)
Can now specify plugin/plugin type for list and dump actions New 'init' action to create usable config sources Co-authored-by: Felix Fontein <felix@fontein.de>
Diffstat (limited to 'test/integration/targets/config/lookup_plugins')
-rw-r--r--test/integration/targets/config/lookup_plugins/types.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/integration/targets/config/lookup_plugins/types.py b/test/integration/targets/config/lookup_plugins/types.py
index a398f1b448..d309229687 100644
--- a/test/integration/targets/config/lookup_plugins/types.py
+++ b/test/integration/targets/config/lookup_plugins/types.py
@@ -22,24 +22,40 @@ DOCUMENTATION = """
ini:
- section: list_values
key: valid
+ env:
+ - name: ANSIBLE_TYPES_VALID
+ vars:
+ - name: ansible_types_valid
mustunquote:
description: does nothihng, just for testing values
type: list
ini:
- section: list_values
key: mustunquote
+ env:
+ - name: ANSIBLE_TYPES_MUSTUNQUOTE
+ vars:
+ - name: ansible_types_mustunquote
notvalid:
description: does nothihng, just for testing values
type: list
ini:
- section: list_values
key: notvalid
+ env:
+ - name: ANSIBLE_TYPES_NOTVALID
+ vars:
+ - name: ansible_types_notvalid
totallynotvalid:
description: does nothihng, just for testing values
type: list
ini:
- section: list_values
key: totallynotvalid
+ env:
+ - name: ANSIBLE_TYPES_TOTALLYNOTVALID
+ vars:
+ - name: ansible_types_totallynotvalid
"""
EXAMPLES = """