1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Updated doc fragment to be consistent with the getting started guide.

This commit is contained in:
chouseknecht 2016-04-27 04:02:15 -04:00
parent 6b0710dde3
commit 2e19a1d86a
No known key found for this signature in database
GPG key ID: 78F1698C5705A81B

View file

@ -23,52 +23,55 @@ class ModuleDocFragment(object):
options: options:
docker_host: docker_host:
description: description:
- URL or Unix socket path used to connect to the Docker daemon. - "The URL or Unix socket path used to connect to the Docker API. To connect to a remote host, provide the
TCP connection string. For example, 'tcp://192.168.99.100:2376'. If TLS is used to encrypt the connection,
the module will automatically replace 'tcp' in the connection URL with 'https'."
required: false required: false
default: null default: "unix://var/run/docker.sock"
aliases: ['docker_url']
tls_hostname: tls_hostname:
description: description:
- If verifying the name of the host found in the TLS certs, provide the expected host name. - When verifying the authenticity of the Docker Host server, provide the expected name of the server.
default: null default: localhost
required: false required: false
api_version: api_version:
description: description:
- Version of the Docker API the client will use. - The version of the Docker API running on the Docker Host. Defaults to the latest version of the API
supported by docker-py.
required: false required: false
default: default provided by docker-py default: default provided by docker-py
timeout: timeout:
description: description:
- Amount of time in seconds to wait on response from the API. - The maximum amount of time in seconds to wait on a response from the API.
required: false required: false
default: null default: 60
cacert_path: cacert_path:
description: description:
- Path to the client TLS Certificate Authority .pem file. - Use a CA certificate when performing server verification by providing the path to a CA certificate file.
required: false required: false
default: null default: null
cert_path: cert_path:
description: description:
- Path to the client TLS certificate .pem file. - Path to the client's TLS certificate file.
required: false required: false
default: null default: null
key_path: key_path:
description: description:
- Path to the client .pem key file. - Path to the client's TLS key file.
required: false required: false
default: null default: null
ssl_version: ssl_version:
description: description:
- SSL version number to use for TLS encryption. - Provide a valid SSL version number. Default value determined by docker-py, currently 1.0.
required: false required: false
default: null default: "1.0"
tls: tls:
description: description:
- Use TLS encryption without verifying the host certificates. - Secure the connection to the API by using TLS without verifying the authenticity of the Docker host
server.
default: false default: false
tls_verify: tls_verify:
description: description:
- Use TLS encryption and verify the host certificates. - Secure the connection to the API by using TLS and verifying the authenticity of the Docker host server.
default: false default: false
notes: notes: