diff --git a/plugins/lookup/consul_kv.py b/plugins/lookup/consul_kv.py index ecd053fdfa..2c969462bf 100644 --- a/plugins/lookup/consul_kv.py +++ b/plugins/lookup/consul_kv.py @@ -27,7 +27,7 @@ DOCUMENTATION = ''' - If the key has a value with the specified index then this is returned allowing access to historical values. datacenter: description: - - Retrieve the key from a consul datatacenter other than the default for the consul host. + - Retrieve the key from a consul datacenter other than the default for the consul host. token: description: The acl token to allow access to restricted values. host: diff --git a/plugins/lookup/cyberarkpassword.py b/plugins/lookup/cyberarkpassword.py index b3661bae2b..153eda23b0 100644 --- a/plugins/lookup/cyberarkpassword.py +++ b/plugins/lookup/cyberarkpassword.py @@ -29,7 +29,7 @@ DOCUMENTATION = ''' - "They could be: Password, PassProps., PasswordChangeInProcess" default: 'password' _extra: - description: for extra_parms values please check parameters for clipasswordsdk in CyberArk's "Credential Provider and ASCP Implementation Guide" + description: for extra_params values please check parameters for clipasswordsdk in CyberArk's "Credential Provider and ASCP Implementation Guide" note: - For Ansible on windows, please change the -parameters (-p, -d, and -o) to /parameters (/p, /d, and /o) and change the location of CLIPasswordSDK.exe ''' diff --git a/plugins/lookup/etcd3.py b/plugins/lookup/etcd3.py index c13ad5ae97..4f86d75fc2 100644 --- a/plugins/lookup/etcd3.py +++ b/plugins/lookup/etcd3.py @@ -31,7 +31,7 @@ DOCUMENTATION = ''' default: False endpoints: description: - - Counterpart of C(ETCDCTL_ENDPOINTS) enviroment variable. + - Counterpart of C(ETCDCTL_ENDPOINTS) environment variable. Specify the etcd3 connection with and URL form eg. C(https://hostname:2379) or C(:) form. - The C(host) part is overwritten by I(host) option, if defined. - The C(port) part is overwritten by I(port) option, if defined. @@ -76,20 +76,20 @@ DOCUMENTATION = ''' type: int user: description: - - Authentified user name. + - Authenticated user name. env: - name: ETCDCTL_USER type: str password: description: - - Authentified user password. + - Authenticated user password. env: - name: ETCDCTL_PASSWORD type: str notes: - I(host) and I(port) options take precedence over (endpoints) option. - - The recommanded way to connect to etcd3 server is using C(ETCDCTL_ENDPOINT) + - The recommended way to connect to etcd3 server is using C(ETCDCTL_ENDPOINT) environment variable and keep I(endpoints), I(host), and I(port) unused. seealso: - module: community.general.etcd3 diff --git a/plugins/lookup/gcp_storage_file.py b/plugins/lookup/gcp_storage_file.py index f8d3247ef8..6baf183f75 100644 --- a/plugins/lookup/gcp_storage_file.py +++ b/plugins/lookup/gcp_storage_file.py @@ -141,5 +141,5 @@ class GcpFileLookup(): class LookupModule(LookupBase): def run(self, terms, variables=None, **kwargs): if not HAS_GOOGLE_CLOUD_COLLECTION: - raise AnsibleError("community.general.gcp_storage_files needs a supported version of the google.cloud collection installed") + raise AnsibleError("community.general.gcp_storage_file needs a supported version of the google.cloud collection installed") return GcpFileLookup().run(terms, variables=variables, **kwargs)