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

    Interface SecurityTemplate

    interface SecurityTemplate {
        build: () => unknown;
        category:
            | "policy"
            | "route"
            | "identity-store"
            | "identity-provider"
            | "portal"
            | "full-setup";
        description: string;
        id: string;
        name: string;
        snippet: string[];
        variables: TemplateVariable[];
    }
    Index

    Properties

    build: () => unknown

    Function that builds the configuration (used for testing)

    category:
        | "policy"
        | "route"
        | "identity-store"
        | "identity-provider"
        | "portal"
        | "full-setup"

    Category for grouping

    description: string

    Description shown in IntelliSense

    id: string

    Template identifier (used as snippet prefix)

    name: string

    Display name

    snippet: string[]

    Raw snippet body for VSCode (with $1, $2 placeholders)

    variables: TemplateVariable[]

    Variables that users can customize