mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-05 12:57:42 +00:00
d17d2083d4
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: houseme <4829346+houseme@users.noreply.github.com> Co-authored-by: heihutu <heihutu@gmail.com>
51 lines
2.1 KiB
Rust
51 lines
2.1 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 a webhook target.
|
|
pub const NOTIFY_WEBHOOK_KEYS: &[&str] = &[
|
|
crate::ENABLE_KEY,
|
|
crate::WEBHOOK_ENDPOINT,
|
|
crate::WEBHOOK_AUTH_TOKEN,
|
|
crate::WEBHOOK_QUEUE_LIMIT,
|
|
crate::WEBHOOK_QUEUE_DIR,
|
|
crate::WEBHOOK_CLIENT_CERT,
|
|
crate::WEBHOOK_CLIENT_KEY,
|
|
crate::COMMENT_KEY,
|
|
crate::WEBHOOK_CLIENT_CA,
|
|
crate::WEBHOOK_SKIP_TLS_VERIFY,
|
|
];
|
|
|
|
// Webhook Environment Variables
|
|
pub const ENV_NOTIFY_WEBHOOK_ENABLE: &str = "RUSTFS_NOTIFY_WEBHOOK_ENABLE";
|
|
pub const ENV_NOTIFY_WEBHOOK_ENDPOINT: &str = "RUSTFS_NOTIFY_WEBHOOK_ENDPOINT";
|
|
pub const ENV_NOTIFY_WEBHOOK_AUTH_TOKEN: &str = "RUSTFS_NOTIFY_WEBHOOK_AUTH_TOKEN";
|
|
pub const ENV_NOTIFY_WEBHOOK_QUEUE_LIMIT: &str = "RUSTFS_NOTIFY_WEBHOOK_QUEUE_LIMIT";
|
|
pub const ENV_NOTIFY_WEBHOOK_QUEUE_DIR: &str = "RUSTFS_NOTIFY_WEBHOOK_QUEUE_DIR";
|
|
pub const ENV_NOTIFY_WEBHOOK_CLIENT_CERT: &str = "RUSTFS_NOTIFY_WEBHOOK_CLIENT_CERT";
|
|
pub const ENV_NOTIFY_WEBHOOK_CLIENT_KEY: &str = "RUSTFS_NOTIFY_WEBHOOK_CLIENT_KEY";
|
|
pub const ENV_NOTIFY_WEBHOOK_CLIENT_CA: &str = "RUSTFS_NOTIFY_WEBHOOK_CLIENT_CA";
|
|
pub const ENV_NOTIFY_WEBHOOK_SKIP_TLS_VERIFY: &str = "RUSTFS_NOTIFY_WEBHOOK_SKIP_TLS_VERIFY";
|
|
|
|
pub const ENV_NOTIFY_WEBHOOK_KEYS: &[&str; 9] = &[
|
|
ENV_NOTIFY_WEBHOOK_ENABLE,
|
|
ENV_NOTIFY_WEBHOOK_ENDPOINT,
|
|
ENV_NOTIFY_WEBHOOK_AUTH_TOKEN,
|
|
ENV_NOTIFY_WEBHOOK_QUEUE_LIMIT,
|
|
ENV_NOTIFY_WEBHOOK_QUEUE_DIR,
|
|
ENV_NOTIFY_WEBHOOK_CLIENT_CERT,
|
|
ENV_NOTIFY_WEBHOOK_CLIENT_KEY,
|
|
ENV_NOTIFY_WEBHOOK_CLIENT_CA,
|
|
ENV_NOTIFY_WEBHOOK_SKIP_TLS_VERIFY,
|
|
];
|