pub struct ChallengeSolverDns01Webhook {
pub config: Option<Value>,
pub group_name: String,
pub solver_name: String,
}Expand description
Configure an external webhook based DNS01 challenge solver to manage DNS01 challenge records.
Fields§
§config: Option<Value>Additional configuration that should be passed to the webhook apiserver when challenges are processed. This can contain arbitrary JSON data. Secret values should not be specified in this stanza. If secret values are needed (e.g., credentials for a DNS service), you should use a SecretKeySelector to reference a Secret resource. For details on the schema of this field, consult the webhook provider implementation’s documentation.
group_name: StringThe API group name that should be used when POSTing ChallengePayload resources to the webhook apiserver. This should be the same as the GroupName specified in the webhook provider implementation.
solver_name: StringThe name of the solver to use, as defined in the webhook provider implementation. This will typically be the name of the provider, e.g., ‘cloudflare’.
Trait Implementations§
Source§impl Clone for ChallengeSolverDns01Webhook
impl Clone for ChallengeSolverDns01Webhook
Source§fn clone(&self) -> ChallengeSolverDns01Webhook
fn clone(&self) -> ChallengeSolverDns01Webhook
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more