community.general.manifold lookup – get credentials from Manifold.co
Note
This lookup plugin is part of the community.general collection (version 10.6.0).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.manifold
.
DEPRECATED
- Removed in:
version 11.0.0
- Why:
Manifold (the company) has been acquired in 2021 and the services used by this plugin are no longer operational.
- Alternative:
There is none.
Synopsis
Retrieves resources’ credentials from Manifold.co
Terms
Keyword parameters
This describes keyword parameters of the lookup. These are the values key1=value1
, key2=value2
and so on in the following
examples: lookup('community.general.manifold', key1=value1, key2=value2, ...)
and query('community.general.manifold', key1=value1, key2=value2, ...)
Parameter |
Comments |
---|---|
The project label you want to get the resource for. |
|
The team label you want to get the resource for. |
Notes
Note
When keyword and positional parameters are used together, positional parameters must be listed before keyword parameters:
lookup('community.general.manifold', term1, term2, key1=value1, key2=value2)
andquery('community.general.manifold', term1, term2, key1=value1, key2=value2)
Examples
- name: all available resources
ansible.builtin.debug:
msg: "{{ lookup('community.general.manifold', api_token='SecretToken') }}"
- name: all available resources for a specific project in specific team
ansible.builtin.debug:
msg: "{{ lookup('community.general.manifold', api_token='SecretToken', project='poject-1', team='team-2') }}"
- name: two specific resources
ansible.builtin.debug:
msg: "{{ lookup('community.general.manifold', 'resource-1', 'resource-2') }}"
Return Value
Status
This lookup will be removed in version 11.0.0. [deprecated]
For more information see DEPRECATED.