Documentation - v0.0.0
    Preparing search index...

    Interface CrisisCleanupConfigMeta

    interface CrisisCleanupConfigMeta {
        $env?: Partial<
            Record<
                | "local"
                | "development"
                | "staging"
                | "production"
                | "production-au"
                | "test",
                objectOutputType<
                    {
                        api: ZodDefault<
                            ZodObject<
                                {
                                    config: ZodDefault<
                                        ZodObject<
                                            {
                                                ccu: ...;
                                                celery: ...;
                                                connect: ...;
                                                django: ...;
                                                elasticSearch: ...;
                                                langchain: ...;
                                                newRelic: ...;
                                                phone: ...;
                                                rag: ...;
                                                sentry: ...;
                                            },
                                            "strip",
                                            ZodTypeAny,
                                            {
                                                ccu: ...;
                                                celery: ...;
                                                connect: ...;
                                                django: ...;
                                                elasticSearch: ...;
                                                langchain: ...;
                                                newRelic: ...;
                                                phone: ...;
                                                rag: ...;
                                                sentry: ...;
                                            },
                                            {
                                                ccu?: ...;
                                                celery?: ...;
                                                connect?: ...;
                                                django?: ...;
                                                elasticSearch?: ...;
                                                langchain?: ...;
                                                newRelic?: ...;
                                                phone?: ...;
                                                rag?: ...;
                                                sentry?: ...;
                                            },
                                        >,
                                    >;
                                    secrets: ZodDefault<
                                        ZodObject<
                                            {
                                                aws: ...;
                                                cloudfront: ...;
                                                connectFirst: ...;
                                                django: ...;
                                                ipstack: ...;
                                                jwt: ...;
                                                langchain: ...;
                                                notifications: ...;
                                                postgres: ...;
                                                redis: ...;
                                                saml: ...;
                                                stripe: ...;
                                                zendesk: ...;
                                            },
                                            "passthrough",
                                            ZodTypeAny,
                                            objectOutputType<(...), (...), (...)>,
                                            objectInputType<(...), (...), (...)>,
                                        >,
                                    >;
                                },
                                "strip",
                                ZodTypeAny,
                                {
                                    config: {
                                        ccu: {
                                            apiUrl: string;
                                            forceDocker: boolean;
                                            newrelicDisable: boolean;
                                            webUrl: string;
                                        };
                                        celery: { alwaysEager: boolean };
                                        connect: { instanceId: string };
                                        django: {
                                            accountAllowRegistration: boolean;
                                            allowedHosts: (...)[];
                                            corsOriginWhitelist: (...)[];
                                            csrfCookieSecure: boolean;
                                            csrfTrustedOrigins: (...)[];
                                            emailBackend: string;
                                            secureSslRedirect: boolean;
                                            sessionCookieSecure: boolean;
                                            settingsModule: string;
                                        };
                                        elasticSearch: { host: string };
                                        langchain: {
                                            endpoint: string;
                                            project: string;
                                            tracingV2: boolean;
                                        };
                                        newRelic: {
                                            configFile: string;
                                            environment?: | (...)
                                            | (...)
                                            | (...)
                                            | (...)
                                            | (...)
                                            | (...)
                                            | (...);
                                        };
                                        phone: { checkTimezone: boolean };
                                        rag: {
                                            chatModel: string;
                                            documentEmbedModel: string;
                                            queryEmbedModel: string;
                                        };
                                        sentry: { traceExcludeUrls: (...)[] };
                                    };
                                    secrets: {
                                        aws?: (...)
                                        | (...);
                                        cloudfront?: (...) | (...);
                                        connectFirst?: (...) | (...);
                                        django?: (...) | (...);
                                        ipstack?: (...) | (...);
                                        jwt?: (...) | (...);
                                        langchain?: (...) | (...);
                                        notifications?: (...) | (...);
                                        postgres?: (...) | (...);
                                        redis?: (...) | (...);
                                        saml?: (...) | (...);
                                        stripe?: (...) | (...);
                                        zendesk?: (...) | (...);
                                    } & { [k: string]: unknown };
                                },
                                {
                                    config?: {
                                        ccu?: (...)
                                        | (...);
                                        celery?: (...) | (...);
                                        connect?: (...) | (...);
                                        django?: (...) | (...);
                                        elasticSearch?: (...) | (...);
                                        langchain?: (...) | (...);
                                        newRelic?: (...) | (...);
                                        phone?: (...) | (...);
                                        rag?: (...) | (...);
                                        sentry?: (...) | (...);
                                    };
                                    secrets?: objectInputType<
                                        {
                                            aws: ...;
                                            cloudfront: ...;
                                            connectFirst: ...;
                                            django: ...;
                                            ipstack: ...;
                                            jwt: ...;
                                            langchain: ...;
                                            notifications: ...;
                                            postgres: ...;
                                            redis: ...;
                                            saml: ...;
                                            stripe: ...;
                                            zendesk: ...;
                                        },
                                        ZodTypeAny,
                                        "passthrough",
                                    >;
                                },
                            >,
                        >;
                        ccuStage: ZodEnum<
                            [
                                "local",
                                "development",
                                "staging",
                                "production",
                                "production-au",
                                "test",
                            ],
                        >;
                        cdkEnvironment: ZodDefault<
                            ZodObject<
                                { account: ZodDefault<ZodString>; region: ZodDefault<ZodString> },
                                "strip",
                                ZodTypeAny,
                                { account: string; region: string },
                                { account?: string; region?: string },
                            >,
                        >;
                        pipeline: ZodDefault<
                            ZodObject<
                                {
                                    appRegistryTag: ZodDefault<ZodString>;
                                    assetsBucketName: ZodDefault<ZodString>;
                                    repositories: ZodDefault<ZodArray<ZodString, "many">>;
                                },
                                "strip",
                                ZodTypeAny,
                                {
                                    appRegistryTag: string;
                                    assetsBucketName: string;
                                    repositories: string[];
                                },
                                {
                                    appRegistryTag?: string;
                                    assetsBucketName?: string;
                                    repositories?: string[];
                                },
                            >,
                        >;
                    },
                    ZodTypeAny,
                    "passthrough",
                >,
            >,
        >;
        $extends?: string[];
    }

    Hierarchy

    Index

    Properties

    Properties

    $env?: Partial<
        Record<
            | "local"
            | "development"
            | "staging"
            | "production"
            | "production-au"
            | "test",
            objectOutputType<
                {
                    api: ZodDefault<
                        ZodObject<
                            {
                                config: ZodDefault<
                                    ZodObject<
                                        {
                                            ccu: ...;
                                            celery: ...;
                                            connect: ...;
                                            django: ...;
                                            elasticSearch: ...;
                                            langchain: ...;
                                            newRelic: ...;
                                            phone: ...;
                                            rag: ...;
                                            sentry: ...;
                                        },
                                        "strip",
                                        ZodTypeAny,
                                        {
                                            ccu: ...;
                                            celery: ...;
                                            connect: ...;
                                            django: ...;
                                            elasticSearch: ...;
                                            langchain: ...;
                                            newRelic: ...;
                                            phone: ...;
                                            rag: ...;
                                            sentry: ...;
                                        },
                                        {
                                            ccu?: ...;
                                            celery?: ...;
                                            connect?: ...;
                                            django?: ...;
                                            elasticSearch?: ...;
                                            langchain?: ...;
                                            newRelic?: ...;
                                            phone?: ...;
                                            rag?: ...;
                                            sentry?: ...;
                                        },
                                    >,
                                >;
                                secrets: ZodDefault<
                                    ZodObject<
                                        {
                                            aws: ...;
                                            cloudfront: ...;
                                            connectFirst: ...;
                                            django: ...;
                                            ipstack: ...;
                                            jwt: ...;
                                            langchain: ...;
                                            notifications: ...;
                                            postgres: ...;
                                            redis: ...;
                                            saml: ...;
                                            stripe: ...;
                                            zendesk: ...;
                                        },
                                        "passthrough",
                                        ZodTypeAny,
                                        objectOutputType<(...), (...), (...)>,
                                        objectInputType<(...), (...), (...)>,
                                    >,
                                >;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                config: {
                                    ccu: {
                                        apiUrl: string;
                                        forceDocker: boolean;
                                        newrelicDisable: boolean;
                                        webUrl: string;
                                    };
                                    celery: { alwaysEager: boolean };
                                    connect: { instanceId: string };
                                    django: {
                                        accountAllowRegistration: boolean;
                                        allowedHosts: (...)[];
                                        corsOriginWhitelist: (...)[];
                                        csrfCookieSecure: boolean;
                                        csrfTrustedOrigins: (...)[];
                                        emailBackend: string;
                                        secureSslRedirect: boolean;
                                        sessionCookieSecure: boolean;
                                        settingsModule: string;
                                    };
                                    elasticSearch: { host: string };
                                    langchain: { endpoint: string; project: string; tracingV2: boolean };
                                    newRelic: {
                                        configFile: string;
                                        environment?: (...) | (...) | (...) | (...) | (...) | (...) | (...);
                                    };
                                    phone: { checkTimezone: boolean };
                                    rag: {
                                        chatModel: string;
                                        documentEmbedModel: string;
                                        queryEmbedModel: string;
                                    };
                                    sentry: { traceExcludeUrls: (...)[] };
                                };
                                secrets: {
                                    aws?: (...)
                                    | (...);
                                    cloudfront?: (...) | (...);
                                    connectFirst?: (...) | (...);
                                    django?: (...) | (...);
                                    ipstack?: (...) | (...);
                                    jwt?: (...) | (...);
                                    langchain?: (...) | (...);
                                    notifications?: (...) | (...);
                                    postgres?: (...) | (...);
                                    redis?: (...) | (...);
                                    saml?: (...) | (...);
                                    stripe?: (...) | (...);
                                    zendesk?: (...) | (...);
                                } & { [k: string]: unknown };
                            },
                            {
                                config?: {
                                    ccu?: (...)
                                    | (...);
                                    celery?: (...) | (...);
                                    connect?: (...) | (...);
                                    django?: (...) | (...);
                                    elasticSearch?: (...) | (...);
                                    langchain?: (...) | (...);
                                    newRelic?: (...) | (...);
                                    phone?: (...) | (...);
                                    rag?: (...) | (...);
                                    sentry?: (...) | (...);
                                };
                                secrets?: objectInputType<
                                    {
                                        aws: ...;
                                        cloudfront: ...;
                                        connectFirst: ...;
                                        django: ...;
                                        ipstack: ...;
                                        jwt: ...;
                                        langchain: ...;
                                        notifications: ...;
                                        postgres: ...;
                                        redis: ...;
                                        saml: ...;
                                        stripe: ...;
                                        zendesk: ...;
                                    },
                                    ZodTypeAny,
                                    "passthrough",
                                >;
                            },
                        >,
                    >;
                    ccuStage: ZodEnum<
                        [
                            "local",
                            "development",
                            "staging",
                            "production",
                            "production-au",
                            "test",
                        ],
                    >;
                    cdkEnvironment: ZodDefault<
                        ZodObject<
                            { account: ZodDefault<ZodString>; region: ZodDefault<ZodString> },
                            "strip",
                            ZodTypeAny,
                            { account: string; region: string },
                            { account?: string; region?: string },
                        >,
                    >;
                    pipeline: ZodDefault<
                        ZodObject<
                            {
                                appRegistryTag: ZodDefault<ZodString>;
                                assetsBucketName: ZodDefault<ZodString>;
                                repositories: ZodDefault<ZodArray<ZodString, "many">>;
                            },
                            "strip",
                            ZodTypeAny,
                            {
                                appRegistryTag: string;
                                assetsBucketName: string;
                                repositories: string[];
                            },
                            {
                                appRegistryTag?: string;
                                assetsBucketName?: string;
                                repositories?: string[];
                            },
                        >,
                    >;
                },
                ZodTypeAny,
                "passthrough",
            >,
        >,
    >
    $extends?: string[]