diff options
| author | doufenghu <[email protected]> | 2024-09-26 11:52:43 +0800 |
|---|---|---|
| committer | doufenghu <[email protected]> | 2024-09-26 11:52:43 +0800 |
| commit | f5381de61ece2697082a8eead7b00601108bde2c (patch) | |
| tree | 3d04a44d5164d3676661996c4430721bff73c70c /docs | |
| parent | 2a7fe1b1b17c65d21b798cbf6a3d18f2c67baadc (diff) | |
[Feature][Common] Add SSL configuration options for secure API/UI access to the vault system.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/grootstream-design-cn.md | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/docs/grootstream-design-cn.md b/docs/grootstream-design-cn.md index e9b6fa6..253f95d 100644 --- a/docs/grootstream-design-cn.md +++ b/docs/grootstream-design-cn.md @@ -115,7 +115,12 @@ grootstream: type: vault url: <vault-url> token: <vault-token> - keyPath: <vault-key-path> + default_key_path: <default-vault-key-path> + plugin_key_path: <plugin-vault-key-path> + ssl: + disabled: true + cert_path: <certificate-path> + private_key_path: <private-key-path> properties: # 用户自定义属性的支持从函数中获取,使用方式见函数定义 hos.path: http://127.0.0.1:9093 @@ -124,11 +129,12 @@ grootstream: scheduler.knowledge_base.update.interval.minutes: 1 #知识库文件定时更新时间 ``` -| 属性名 | 必填 | 默认值 | 类型 | 描述 | -|----------------|----|-----|--------------------|----------------------------------------| -| knowledge_base | Y | - | Object | 知识库配置 | -| kms | N | - | Object | kms (key management system, 密钥管理系统) 配置 | -| properties | N | - | Map(String,Object) | 自定义属性配置:key-value 格式 | +| 属性名 | 必填 | 默认值 | 类型 | 描述 | +| -------------- | ---- | ------ | ------------------ | ---------------------------------------------- | +| knowledge_base | Y | - | Object | 知识库配置 | +| kms | N | - | Object | kms (key management system, 密钥管理系统) 配置 | +| tls | N | - | Object | 客户端启用SSL双向认证 | +| properties | N | - | Map(String,Object) | 自定义属性配置:key-value 格式 | @@ -1606,7 +1612,7 @@ Example 2: 会话日志字段encapsulation(JsonString格式)嵌套结构进行� Parameters: -- secret = `<string>` 用于生成MAC的密钥。 +- secret_key = `<string>` 用于生成MAC的密钥。 - algorithm= `<string>` 用于生成MAC的HASH算法。默认是`sha256` - output_format = `<string>` 输出MAC的格式。默认为`'hex'` 。支持:`base64` | `hex `。 @@ -1803,8 +1809,6 @@ Parameters precision: 2 ``` - #### - #### Number Sum 在时间窗口内对指定数字类型字段进行求和:支持 int,long,double,float类型。 @@ -2072,7 +2076,7 @@ Parameters: [CN函数库](https://docs.geedge.net/pages/viewpage.action?pageId=129087866) -用户自定义插件 +用户自定义插件(IN Progress) | 名称 | 描述 | 类型 | 必填 | 约束 | |----------------------|---------|---------------|----|---------| |
