You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by zr...@apache.org on 2023/06/01 21:40:57 UTC

[trafficcontrol] branch master updated: Added double quotes for cert and key (#7550)

This is an automated email from the ASF dual-hosted git repository.

zrhoffman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git


The following commit(s) were added to refs/heads/master by this push:
     new 8a1140d0f3 Added double quotes for cert and key (#7550)
8a1140d0f3 is described below

commit 8a1140d0f30faa7533778d15802463c9a637e1d4
Author: Rima Shah <22...@users.noreply.github.com>
AuthorDate: Thu Jun 1 15:40:52 2023 -0600

    Added double quotes for cert and key (#7550)
---
 infrastructure/ansible/roles/traffic_ops/templates/cdn.conf.j2 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/infrastructure/ansible/roles/traffic_ops/templates/cdn.conf.j2 b/infrastructure/ansible/roles/traffic_ops/templates/cdn.conf.j2
index 90facb2ea6..b5fbd53f90 100644
--- a/infrastructure/ansible/roles/traffic_ops/templates/cdn.conf.j2
+++ b/infrastructure/ansible/roles/traffic_ops/templates/cdn.conf.j2
@@ -44,8 +44,8 @@
    "use_ims": {{ to_use_ims | bool | lower }},
    "role_based_permissions": {{ to_use_rbp | bool | lower }},
    "traffic_ops_golang" : {
-      "cert" : {{ to_certs_cert }},
-      "key" : {{ to_certs_key }},
+      "cert" : "{{ to_certs_cert }}",
+      "key" : "{{ to_certs_key }}",
       "idle_timeout" : {{ to_go_inactive_timeout }},
       "log_location_debug" : "{{ to_go_logging_file_debug }}",
       "log_location_error" : "{{ to_go_logging_file_error }}",