mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Change double quotes to single quotes in add_host config example
This commit is contained in:
parent
e132f06a5c
commit
4ee1b777e9
1 changed files with 7 additions and 7 deletions
|
@ -3215,17 +3215,17 @@ def add_host(kwargs=None, call=None):
|
|||
|
||||
.. code-block:: yaml
|
||||
|
||||
vmware-vcenter01:
|
||||
vcenter01:
|
||||
provider: vmware
|
||||
user: "DOMAIN\\user"
|
||||
password: "verybadpass"
|
||||
url: "vcenter01.domain.com"
|
||||
user: 'DOMAIN\user'
|
||||
password: 'verybadpass'
|
||||
url: 'vcenter01.domain.com'
|
||||
|
||||
# Required when adding a host system
|
||||
esxi_host_user: "root"
|
||||
esxi_host_password: "myhostpassword"
|
||||
esxi_host_user: 'root'
|
||||
esxi_host_password: 'myhostpassword'
|
||||
# Optional fields that can be specified when adding a host system
|
||||
esxi_host_ssl_thumbprint: "12:A3:45:B6:CD:7E:F8:90:A1:BC:23:45:D6:78:9E:FA:01:2B:34:CD"
|
||||
esxi_host_ssl_thumbprint: '12:A3:45:B6:CD:7E:F8:90:A1:BC:23:45:D6:78:9E:FA:01:2B:34:CD'
|
||||
|
||||
The SSL thumbprint of the host system can be optionally specified by setting
|
||||
``esxi_host_ssl_thumbprint`` under your provider configuration. To get the SSL
|
||||
|
|
Loading…
Add table
Reference in a new issue