From 96335b12bb2a364927be59f78f88f7263f732db1 Mon Sep 17 00:00:00 2001 From: Tim Rupp Date: Tue, 19 Dec 2017 12:33:55 -0800 Subject: [PATCH] Fixes some verbiage in the f5 docs (#34057) --- lib/ansible/utils/module_docs_fragments/f5.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/lib/ansible/utils/module_docs_fragments/f5.py b/lib/ansible/utils/module_docs_fragments/f5.py index 0df89ad2131..a72dd4508df 100644 --- a/lib/ansible/utils/module_docs_fragments/f5.py +++ b/lib/ansible/utils/module_docs_fragments/f5.py @@ -23,34 +23,32 @@ options: password: description: - The password for the user account used to connect to the BIG-IP. - This option can be omitted if the environment variable C(F5_PASSWORD) + You can omit this option if the environment variable C(F5_PASSWORD) is set. required: true server: description: - - The BIG-IP host. This option can be omitted if the environment + - The BIG-IP host. You can omit this option if the environment variable C(F5_SERVER) is set. required: true server_port: description: - - The BIG-IP server port. This option can be omitted if the environment + - The BIG-IP server port. You can omit this option if the environment variable C(F5_SERVER_PORT) is set. - required: false default: 443 version_added: 2.2 user: description: - The username to connect to the BIG-IP with. This user must have - administrative privileges on the device. This option can be omitted + administrative privileges on the device. You can omit this option if the environment variable C(F5_USER) is set. required: true validate_certs: description: - - If C(no), SSL certificates will not be validated. This should only be - used on personally controlled sites using self-signed certificates. - This option can be omitted if the environment variable + - If C(no), SSL certificates will not be validated. Use this only + on personally controlled sites using self-signed certificates. + You can omit this option if the environment variable C(F5_VALIDATE_CERTS) is set. - required: false default: yes choices: - yes