pub struct InlineTrustConfig {
pub additional_trust_bundles: Option<HashMap<String, TrustStore>>,
}Expand description
Defines configuration for extending trust to additional trust domains. By establishing trust with another domain, the current domain will recognize and accept certificates issued by entities within the trusted domains. Note that a trust domain automatically trusts itself, eliminating the need for explicit configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§additional_trust_bundles: Option<HashMap<String, TrustStore>>Optional. Maps specific trust domains (e.g., “example.com”) to their corresponding TrustStore, which contain the trusted root certificates for that domain. There can be a maximum of 10 trust domain entries in this map. Note that a trust domain automatically trusts itself and don’t need to be specified here. If however, this WorkloadIdentityPool’s trust domain contains any trust anchors in the additional_trust_bundles map, those trust anchors will be appended to the trust bundle automatically derived from your InlineCertificateIssuanceConfig’s ca_pools.
Trait Implementations§
Source§impl Clone for InlineTrustConfig
impl Clone for InlineTrustConfig
Source§fn clone(&self) -> InlineTrustConfig
fn clone(&self) -> InlineTrustConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more