pub struct SecretVolume {
pub mount_path: Option<String>,
pub project_id: Option<String>,
pub secret: Option<String>,
pub versions: Option<Vec<SecretVersion>>,
}
Expand description
Configuration for a secret volume. It has the information necessary to fetch the secret value from secret manager and make it available as files mounted at the requested paths within the application container. Secret value is not a part of the configuration. Every filesystem read operation performs a lookup in secret manager to retrieve the secret value.
This type is not used in any activity, and only used as part of another schema.
Fields§
§mount_path: Option<String>
The path within the container to mount the secret volume. For example, setting the mount_path as /etc/secrets
would mount the secret value files under the /etc/secrets
directory. This directory will also be completely shadowed and unavailable to mount any other secrets. Recommended mount paths: /etc/secrets Restricted mount paths: /cloudsql, /dev/log, /pod, /proc, /var/log
project_id: Option<String>
Project identifier (preferrably project number but can also be the project ID) of the project that contains the secret. If not set, it will be populated with the function’s project assuming that the secret exists in the same project as of the function.
secret: Option<String>
Name of the secret in secret manager (not the full resource name).
versions: Option<Vec<SecretVersion>>
List of secret versions to mount for this secret. If empty, the latest
version of the secret will be made available in a file named after the secret under the mount point.
Trait Implementations§
Source§impl Clone for SecretVolume
impl Clone for SecretVolume
Source§fn clone(&self) -> SecretVolume
fn clone(&self) -> SecretVolume
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SecretVolume
impl Debug for SecretVolume
Source§impl Default for SecretVolume
impl Default for SecretVolume
Source§fn default() -> SecretVolume
fn default() -> SecretVolume
Source§impl<'de> Deserialize<'de> for SecretVolume
impl<'de> Deserialize<'de> for SecretVolume
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for SecretVolume
impl Serialize for SecretVolume
impl Part for SecretVolume
Auto Trait Implementations§
impl Freeze for SecretVolume
impl RefUnwindSafe for SecretVolume
impl Send for SecretVolume
impl Sync for SecretVolume
impl Unpin for SecretVolume
impl UnwindSafe for SecretVolume
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more