From: Frank Brehm Date: Tue, 23 Jul 2024 09:46:33 +0000 (+0200) Subject: Fixed address of Prod VSphere. X-Git-Tag: 1.10.2^2~1 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=646bbfea5e90dc541b8624d48d66854b709ab063;p=pixelpark%2Fcreate-terraform.git Fixed address of Prod VSphere. --- diff --git a/etc/create-terraform.ini.default b/etc/create-terraform.ini.default index 734161c..5b7eb14 100644 --- a/etc/create-terraform.ini.default +++ b/etc/create-terraform.ini.default @@ -25,7 +25,7 @@ rhsm_user = dpx-subscriber [vSphere:live] ; Hostname of VSphere management host -host = vcs01.ppbrln.internal +host = vcs01.pixelpark.net port = 443 diff --git a/lib/create_terraform/config.py b/lib/create_terraform/config.py index c323413..1fe1e5c 100644 --- a/lib/create_terraform/config.py +++ b/lib/create_terraform/config.py @@ -57,7 +57,7 @@ class CrTfConfiguration(BaseConfiguration): default_vsphere_defs = { 'live': { - 'host': 'vcs01.ppbrln.internal', + 'host': 'vcs01.pixelpark.net', 'port': 443, 'dc': 'vmcc', 'cluster': 'vmcc-l105-01', diff --git a/lib/create_terraform/vs_config.py b/lib/create_terraform/vs_config.py index c52170d..2da5e1a 100644 --- a/lib/create_terraform/vs_config.py +++ b/lib/create_terraform/vs_config.py @@ -32,7 +32,7 @@ ngettext = XLATOR.ngettext class VsphereConfig(FbBaseObject): """Class for encapsulation of config data of a connection to a VSPhere center.""" - default_host = 'vcs01.ppbrln.internal' + default_host = 'vcs01.pixelpark.net' default_port = 443 default_dc = 'vmcc' default_cluster = 'vmcc-l105-01'