mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-28 09:08:58 +00:00
5431b9273d
Signed-off-by: jaehanbyun <awbrg789@naver.com> Signed-off-by: houseme <housemecn@gmail.com> Signed-off-by: Gunther Xing <jiengup@gmail.com> Signed-off-by: JaySon-Huang <tshent@qq.com> Co-authored-by: jaehanbyun <awbrg789@naver.com> Co-authored-by: Gunther Xing <jiengup@gmail.com> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: cxymds <Cxymds@qq.com> Co-authored-by: JaySon <tshent@qq.com> Co-authored-by: 安正超 <anzhengchao@gmail.com>
52 lines
2.1 KiB
Rust
52 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.
|
|
|
|
pub const AUDIT_POSTGRES_KEYS: &[&str] = &[
|
|
crate::ENABLE_KEY,
|
|
crate::POSTGRES_DSN_STRING,
|
|
crate::POSTGRES_TABLE,
|
|
crate::POSTGRES_FORMAT,
|
|
crate::POSTGRES_TLS_REQUIRED,
|
|
crate::POSTGRES_TLS_CA,
|
|
crate::POSTGRES_TLS_CLIENT_CERT,
|
|
crate::POSTGRES_TLS_CLIENT_KEY,
|
|
crate::POSTGRES_QUEUE_DIR,
|
|
crate::POSTGRES_QUEUE_LIMIT,
|
|
crate::COMMENT_KEY,
|
|
];
|
|
|
|
pub const ENV_AUDIT_POSTGRES_ENABLE: &str = "RUSTFS_AUDIT_POSTGRES_ENABLE";
|
|
pub const ENV_AUDIT_POSTGRES_DSN_STRING: &str = "RUSTFS_AUDIT_POSTGRES_DSN_STRING";
|
|
pub const ENV_AUDIT_POSTGRES_TABLE: &str = "RUSTFS_AUDIT_POSTGRES_TABLE";
|
|
pub const ENV_AUDIT_POSTGRES_FORMAT: &str = "RUSTFS_AUDIT_POSTGRES_FORMAT";
|
|
pub const ENV_AUDIT_POSTGRES_TLS_REQUIRED: &str = "RUSTFS_AUDIT_POSTGRES_TLS_REQUIRED";
|
|
pub const ENV_AUDIT_POSTGRES_TLS_CA: &str = "RUSTFS_AUDIT_POSTGRES_TLS_CA";
|
|
pub const ENV_AUDIT_POSTGRES_TLS_CLIENT_CERT: &str = "RUSTFS_AUDIT_POSTGRES_TLS_CLIENT_CERT";
|
|
pub const ENV_AUDIT_POSTGRES_TLS_CLIENT_KEY: &str = "RUSTFS_AUDIT_POSTGRES_TLS_CLIENT_KEY";
|
|
pub const ENV_AUDIT_POSTGRES_QUEUE_DIR: &str = "RUSTFS_AUDIT_POSTGRES_QUEUE_DIR";
|
|
pub const ENV_AUDIT_POSTGRES_QUEUE_LIMIT: &str = "RUSTFS_AUDIT_POSTGRES_QUEUE_LIMIT";
|
|
|
|
pub const ENV_AUDIT_POSTGRES_KEYS: &[&str; 10] = &[
|
|
ENV_AUDIT_POSTGRES_ENABLE,
|
|
ENV_AUDIT_POSTGRES_DSN_STRING,
|
|
ENV_AUDIT_POSTGRES_TABLE,
|
|
ENV_AUDIT_POSTGRES_FORMAT,
|
|
ENV_AUDIT_POSTGRES_TLS_REQUIRED,
|
|
ENV_AUDIT_POSTGRES_TLS_CA,
|
|
ENV_AUDIT_POSTGRES_TLS_CLIENT_CERT,
|
|
ENV_AUDIT_POSTGRES_TLS_CLIENT_KEY,
|
|
ENV_AUDIT_POSTGRES_QUEUE_DIR,
|
|
ENV_AUDIT_POSTGRES_QUEUE_LIMIT,
|
|
];
|