diff --git a/orchestrator/utils/orchestrator_functions.py b/orchestrator/utils/orchestrator_functions.py index fe2fc26..79f1070 100644 --- a/orchestrator/utils/orchestrator_functions.py +++ b/orchestrator/utils/orchestrator_functions.py @@ -282,6 +282,9 @@ def build_tag_config(tag: dict[str, Any], slot_config: dict[str, Any], "name": server_name, "url": opc_servers[server_id]['url'], "server_uri": opc_servers[server_id]['uri'], + "cert_path": opc_servers[server_id].get('cert_path', None), + "private_key_path": opc_servers[server_id].get('private_key_path', None), + "server_cert_path": opc_servers[server_id].get('server_cert_path', None), "tags": {} } for name, spec in opc_servers[server_id].get('security_spec', {}).items():