Skip to main content

SecretAccess

Enum SecretAccess 

Source
pub enum SecretAccess {
    AllowAny,
    Workloads(Vec<WorkloadMatch>),
    Recipes(Vec<RecipeMatch>),
}
Expand description

Who may be served a given cluster secret.

Stored alongside the ciphertext (yubaba’s SecretRecord) so the check rides on the record itself and is evaluated on the node at mount time — a rule checked only by the tool that authors a deploy is a lint, not a rule.

Default is Workloads(vec![]), which admits nobody. That is what makes the migration fail closed: a record serialized before this field existed deserializes (via #[serde(default)]) to an empty allow-list and is refused, rather than being implicitly granted to everyone.

Variants§

§

AllowAny

Deliberately unrestricted: any workload that names this secret gets it.

This is the explicit escape hatch, never an implicit one. It has to be written into the record by whoever put the secret there, and it shows up in yah cloud secret ls as allow-any, so an unrestricted secret is an auditable choice rather than the silent default.

§

Workloads(Vec<WorkloadMatch>)

Only workloads matching one of these entries. An empty list admits nobody — see the type-level note on fail-closed defaulting.

§

Recipes(Vec<RecipeMatch>)

Only runs of one of these signed recipes (R555-F5 / W235 §(c)).

The rule a dispatched build needs: its workload name is a per-run forge-<uuid> that no allow-list can name in advance, so SecretAccess::Workloads cannot express “the rusty-v8-musl build may read the R2 write key” and SecretAccess::AllowAny over-answers it by handing that key to anything that can reach the node.

Matching consumes a RecipeIdentity that only exists on the far side of a verified Ed25519 grant, so this is narrower than the workload rule, not a loophole in it: the requester has to be running argv the recipe author signed, on a node that pins the author’s key.

Implementations§

Source§

impl SecretAccess

Source

pub fn workloads<I, S>(names: I) -> Self
where I: IntoIterator<Item = S>, S: Into<String>,

Allow exactly the named workloads, in the singleton tenant/namespace.

Source

pub fn recipes<I, N, K>(entries: I) -> Self
where I: IntoIterator<Item = (N, K)>, N: Into<String>, K: Into<String>,

Whether consumer may be served the secret this rule guards. Allow exactly the named recipes, each signed by the given hex key.

Source

pub fn admits(&self, consumer: &SecretConsumer) -> bool

Source

pub fn summary(&self) -> String

Short operator-facing rendering for yah cloud secret ls.

Trait Implementations§

Source§

impl Clone for SecretAccess

Source§

fn clone(&self) -> SecretAccess

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for SecretAccess

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for SecretAccess

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for SecretAccess

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for SecretAccess

Source§

impl PartialEq for SecretAccess

Source§

fn eq(&self, other: &SecretAccess) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for SecretAccess

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for SecretAccess

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.