#!/bin/env python3
# -*- coding: utf-8 -*-
-__version__ = '1.4.12'
+__version__ = '1.5.0'
-MIN_VERSION_TERRAFORM = '0.12.2'
-MAX_VERSION_TERRAFORM = '0.12.99'
+MIN_VERSION_TERRAFORM = '1.0.5'
+MAX_VERSION_TERRAFORM = '1.2.0'
-MIN_VERSION_VSPHERE_PROVIDER = '1.11.0'
+MIN_VERSION_VSPHERE_PROVIDER = '2.0.0'
CFGFILE_BASENAME = 'create-terraform.ini'
tpl = textwrap.dedent('''\
variable "vsphere_user" {
- default = "Administrator@vsphere.local"
description = "vSphere accountname to be used."
type = string
}
allow_unverified_ssl = true
''')
- if self.min_version_vsphere_provider:
- content += ' version = ">= {}"\n'.format(
- str(self.min_version_vsphere_provider))
+# if self.min_version_vsphere_provider:
+# content += ' version = ">= {}"\n'.format(
+# str(self.min_version_vsphere_provider))
content += textwrap.dedent('''\
}