from .xlate import XLATOR
-__version__ = '3.6.3'
+__version__ = '3.6.4'
LOG = logging.getLogger(__name__)
_ = XLATOR.gettext
# create manually a file 'terraform-private.auto.tfvars"
# with the following content:
#
- # vsphere_username = "<USERNAME>"
- # vsphere_userpasswd = "<PASSWORD>"
- # pdns_api_key = "<API-KEY>"
+ # vsphere_username = "<USERNAME>"
+ # vsphere_userpassword = "<PASSWORD>"
#
# with the correct values. This file will not be under GIT control
#
if vs_user or vs_pwd:
content = '# Private sensible information. Please keep this file secret.\n\n'
if vs_user:
- content += 'vsphere_username = "{}"\n.'.format(vs_user)
+ content += 'vsphere_username = "{}"\n'.format(vs_user)
if vs_pwd:
- content += 'vsphere_userpasswd = "{}""\n.'.format(vs_pwd)
+ content += 'vsphere_userpassword = "{}"\n'.format(vs_pwd)
content += '\n'
LOG.debug(_("Creating {!r} ...").format('private.auto.tfvars'))