mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-11 15:46:53 +00:00
d6158c0481
Signed-off-by: houseme <housemecn@gmail.com> Co-authored-by: heihutu <heihutu@gmail.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: houseme <4829346+houseme@users.noreply.github.com> Co-authored-by: 安正超 <anzhengchao@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
72 lines
3.0 KiB
Rust
72 lines
3.0 KiB
Rust
// Copyright 2024 RustFS Team
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
/// A list of all valid configuration keys for an MQTT target.
|
|
pub const NOTIFY_MQTT_KEYS: &[&str] = &[
|
|
crate::ENABLE_KEY,
|
|
crate::MQTT_BROKER,
|
|
crate::MQTT_TOPIC,
|
|
crate::MQTT_QOS,
|
|
crate::MQTT_USERNAME,
|
|
crate::MQTT_PASSWORD,
|
|
crate::MQTT_RECONNECT_INTERVAL,
|
|
crate::MQTT_KEEP_ALIVE_INTERVAL,
|
|
crate::MQTT_QUEUE_DIR,
|
|
crate::MQTT_QUEUE_LIMIT,
|
|
crate::MQTT_TLS_POLICY,
|
|
crate::MQTT_TLS_CA,
|
|
crate::MQTT_TLS_CLIENT_CERT,
|
|
crate::MQTT_TLS_CLIENT_KEY,
|
|
crate::MQTT_TLS_TRUST_LEAF_AS_CA,
|
|
crate::MQTT_WS_PATH_ALLOWLIST,
|
|
crate::COMMENT_KEY,
|
|
];
|
|
|
|
// MQTT Environment Variables
|
|
pub const ENV_NOTIFY_MQTT_ENABLE: &str = "RUSTFS_NOTIFY_MQTT_ENABLE";
|
|
pub const ENV_NOTIFY_MQTT_BROKER: &str = "RUSTFS_NOTIFY_MQTT_BROKER";
|
|
pub const ENV_NOTIFY_MQTT_TOPIC: &str = "RUSTFS_NOTIFY_MQTT_TOPIC";
|
|
pub const ENV_NOTIFY_MQTT_QOS: &str = "RUSTFS_NOTIFY_MQTT_QOS";
|
|
pub const ENV_NOTIFY_MQTT_USERNAME: &str = "RUSTFS_NOTIFY_MQTT_USERNAME";
|
|
pub const ENV_NOTIFY_MQTT_PASSWORD: &str = "RUSTFS_NOTIFY_MQTT_PASSWORD";
|
|
pub const ENV_NOTIFY_MQTT_RECONNECT_INTERVAL: &str = "RUSTFS_NOTIFY_MQTT_RECONNECT_INTERVAL";
|
|
pub const ENV_NOTIFY_MQTT_KEEP_ALIVE_INTERVAL: &str = "RUSTFS_NOTIFY_MQTT_KEEP_ALIVE_INTERVAL";
|
|
pub const ENV_NOTIFY_MQTT_QUEUE_DIR: &str = "RUSTFS_NOTIFY_MQTT_QUEUE_DIR";
|
|
pub const ENV_NOTIFY_MQTT_QUEUE_LIMIT: &str = "RUSTFS_NOTIFY_MQTT_QUEUE_LIMIT";
|
|
pub const ENV_NOTIFY_MQTT_TLS_POLICY: &str = "RUSTFS_NOTIFY_MQTT_TLS_POLICY";
|
|
pub const ENV_NOTIFY_MQTT_TLS_CA: &str = "RUSTFS_NOTIFY_MQTT_TLS_CA";
|
|
pub const ENV_NOTIFY_MQTT_TLS_CLIENT_CERT: &str = "RUSTFS_NOTIFY_MQTT_TLS_CLIENT_CERT";
|
|
pub const ENV_NOTIFY_MQTT_TLS_CLIENT_KEY: &str = "RUSTFS_NOTIFY_MQTT_TLS_CLIENT_KEY";
|
|
pub const ENV_NOTIFY_MQTT_TLS_TRUST_LEAF_AS_CA: &str = "RUSTFS_NOTIFY_MQTT_TLS_TRUST_LEAF_AS_CA";
|
|
pub const ENV_NOTIFY_MQTT_WS_PATH_ALLOWLIST: &str = "RUSTFS_NOTIFY_MQTT_WS_PATH_ALLOWLIST";
|
|
|
|
pub const ENV_NOTIFY_MQTT_KEYS: &[&str; 16] = &[
|
|
ENV_NOTIFY_MQTT_ENABLE,
|
|
ENV_NOTIFY_MQTT_BROKER,
|
|
ENV_NOTIFY_MQTT_TOPIC,
|
|
ENV_NOTIFY_MQTT_QOS,
|
|
ENV_NOTIFY_MQTT_USERNAME,
|
|
ENV_NOTIFY_MQTT_PASSWORD,
|
|
ENV_NOTIFY_MQTT_RECONNECT_INTERVAL,
|
|
ENV_NOTIFY_MQTT_KEEP_ALIVE_INTERVAL,
|
|
ENV_NOTIFY_MQTT_QUEUE_DIR,
|
|
ENV_NOTIFY_MQTT_QUEUE_LIMIT,
|
|
ENV_NOTIFY_MQTT_TLS_POLICY,
|
|
ENV_NOTIFY_MQTT_TLS_CA,
|
|
ENV_NOTIFY_MQTT_TLS_CLIENT_CERT,
|
|
ENV_NOTIFY_MQTT_TLS_CLIENT_KEY,
|
|
ENV_NOTIFY_MQTT_TLS_TRUST_LEAF_AS_CA,
|
|
ENV_NOTIFY_MQTT_WS_PATH_ALLOWLIST,
|
|
];
|