Fix env lookup plugin docs (#34235)
The env lookup plugin docs mistakenly mentioned dns TXT records, and that it requires a DNS resolver library.
This commit is contained in:
parent
6a6f5129a9
commit
1c157a8cf1
1 changed files with 1 additions and 3 deletions
|
@ -9,8 +9,6 @@ DOCUMENTATION = """
|
||||||
author: Jan-Piet Mens (@jpmens) <jpmens(at)gmail.com>
|
author: Jan-Piet Mens (@jpmens) <jpmens(at)gmail.com>
|
||||||
version_added: "0.9"
|
version_added: "0.9"
|
||||||
short_description: read the value of environment variables
|
short_description: read the value of environment variables
|
||||||
requirements:
|
|
||||||
- dns/dns.resolver (python library)
|
|
||||||
description:
|
description:
|
||||||
- Allows you to query the environment variables available on the controller when you invoked Ansible.
|
- Allows you to query the environment variables available on the controller when you invoked Ansible.
|
||||||
options:
|
options:
|
||||||
|
@ -26,7 +24,7 @@ EXAMPLES = """
|
||||||
RETURN = """
|
RETURN = """
|
||||||
_list:
|
_list:
|
||||||
description:
|
description:
|
||||||
- values returned by the DNS TXT record.
|
- values from the environment variables.
|
||||||
type: list
|
type: list
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
|
|
Loading…
Reference in a new issue