From 156788c56e35eaf4356c5d6d02a81e900bae8638 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Tue, 8 Jun 2021 16:29:15 -0400 Subject: [PATCH] Add missing quotes --- roles/installer/templates/execution_environments.py.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/installer/templates/execution_environments.py.j2 b/roles/installer/templates/execution_environments.py.j2 index 4774b422..e8a2789a 100644 --- a/roles/installer/templates/execution_environments.py.j2 +++ b/roles/installer/templates/execution_environments.py.j2 @@ -3,4 +3,4 @@ GLOBAL_JOB_EXECUTION_ENVIRONMENTS = [ {'name': '{{ item.name }}' , 'image': '{{ item.image }}'}, {% endfor %} ] -CONTROL_PLANE_EXECUTION_ENVIRONMENT = {{ control_plane_ee_image }} +CONTROL_PLANE_EXECUTION_ENVIRONMENT = '{{ control_plane_ee_image }}'