Add aliases
This commit is contained in:
parent
2e19a1d86a
commit
9ddcf13661
1 changed files with 10 additions and 0 deletions
|
@ -28,6 +28,8 @@ options:
|
||||||
the module will automatically replace 'tcp' in the connection URL with 'https'."
|
the module will automatically replace 'tcp' in the connection URL with 'https'."
|
||||||
required: false
|
required: false
|
||||||
default: "unix://var/run/docker.sock"
|
default: "unix://var/run/docker.sock"
|
||||||
|
aliases:
|
||||||
|
- docker_url
|
||||||
tls_hostname:
|
tls_hostname:
|
||||||
description:
|
description:
|
||||||
- When verifying the authenticity of the Docker Host server, provide the expected name of the server.
|
- When verifying the authenticity of the Docker Host server, provide the expected name of the server.
|
||||||
|
@ -39,6 +41,8 @@ options:
|
||||||
supported by docker-py.
|
supported by docker-py.
|
||||||
required: false
|
required: false
|
||||||
default: default provided by docker-py
|
default: default provided by docker-py
|
||||||
|
aliases:
|
||||||
|
- docker_api_version
|
||||||
timeout:
|
timeout:
|
||||||
description:
|
description:
|
||||||
- The maximum amount of time in seconds to wait on a response from the API.
|
- The maximum amount of time in seconds to wait on a response from the API.
|
||||||
|
@ -49,16 +53,22 @@ options:
|
||||||
- Use a CA certificate when performing server verification by providing the path to a CA certificate 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
|
||||||
|
aliases:
|
||||||
|
- tls_ca_cert
|
||||||
cert_path:
|
cert_path:
|
||||||
description:
|
description:
|
||||||
- Path to the client's TLS certificate file.
|
- Path to the client's TLS certificate file.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
aliases:
|
||||||
|
- tls_client_cert
|
||||||
key_path:
|
key_path:
|
||||||
description:
|
description:
|
||||||
- Path to the client's TLS key file.
|
- Path to the client's TLS key file.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
aliases:
|
||||||
|
- tls_client_key
|
||||||
ssl_version:
|
ssl_version:
|
||||||
description:
|
description:
|
||||||
- Provide a valid SSL version number. Default value determined by docker-py, currently 1.0.
|
- Provide a valid SSL version number. Default value determined by docker-py, currently 1.0.
|
||||||
|
|
Loading…
Reference in a new issue