summaryrefslogtreecommitdiffstats
path: root/src/config/container_config.rs
blob: f11735199c8d6502e6cea0f823844aef81cd4f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Copyright (c) 2020-2021 science+computing ag and other contributors
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
//

use getset::CopyGetters;
use getset::Getters;
use serde::Deserialize;

use crate::util::EnvironmentVariableName;

/// The configuration for the containers
#[derive(Debug, CopyGetters, Getters, Deserialize)]
pub struct ContainerConfig {
    /// check environment names whether they're allowed
    #[getset(get_copy = "pub")]
    check_env_names: bool,

    /// Allowed environment variables (names)
    #[getset(get = "pub")]
    allowed_env: Vec<EnvironmentVariableName>,
}