From 6d44ddc487e3ef0c561f7d891128e8d7450ddd58 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Tue, 4 Jan 2022 18:40:12 +0100 Subject: [PATCH] Fixing generation of instance file in lib/cr_tf/handler.py --- lib/cr_tf/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cr_tf/handler.py b/lib/cr_tf/handler.py index b2d6db8..6a5f6ab 100644 --- a/lib/cr_tf/handler.py +++ b/lib/cr_tf/handler.py @@ -67,7 +67,7 @@ from .terraform.disk import TerraformDisk from .xlate import XLATOR -__version__ = '3.6.8' +__version__ = '3.6.9' LOG = logging.getLogger(__name__) _ = XLATOR.gettext @@ -2741,7 +2741,7 @@ class CreateTerraformHandler(BaseHandler): cmd = ("/tmp/create-motd --purpose '{p}' --hardware 'vmware (x86_64)' --owner '{o}' " "--zone 'VMWare' --customer '{c}' --email '{m}' --tier '{t}' " "--environment '{e}' --role '{r}'").format( p=purpose, t=vm.puppet_tier, o=vm.customer, - c=vm.puppet_customer, m=vm.puppet_contact, e=vm.puppet_env) + c=vm.puppet_customer, m=vm.puppet_contact, e=vm.puppet_env, r=vm.puppet_role) if vm.puppet_project: cmd += " --project '{pr}'".format(pr=vm.puppet_project) cmd += " | tee /etc/motd" -- 2.39.5