@accelerated-software-development/caddy-api-client - v0.10.0
    Preparing search index...

    Interface AcmeDnsProviderConfigResult

    Result of building a provider's DNS-01 config: the typed providerConfig to pass through to buildAcmeDnsPolicy.providerConfig, plus the env var names the caller should ensure are set (names only — never values).

    interface AcmeDnsProviderConfigResult {
        envVars: string[];
        providerConfig?: Record<string, unknown>;
    }
    Index

    Properties

    envVars: string[]

    Env var names referenced by providerConfig's {env.VAR} placeholders (or, for route53's default zero-arg call, consumed directly by the AWS SDK's credential chain).

    providerConfig?: Record<string, unknown>

    Omitted for providers (e.g. route53 when called with no explicit options) that resolve credentials outside of providerConfig entirely.