@resistdesign/voltra
    Preparing search index...

    Interface Env

    BuildSpec environment configuration.

    interface Env {
        "exported-variables"?: string[];
        "git-credential-helper"?: YesOrNo;
        "parameter-store"?: Record<string, string>;
        "secrets-manager"?: Record<
            string,
            `${string}:${string}:${string}:${string}`,
        >;
        shell?: string;
        variables?: Record<string, string>;
    }
    Index

    Properties

    "exported-variables"?: string[]

    Exported variable names.

    "git-credential-helper"?: YesOrNo

    Whether to enable git credential helper.

    "parameter-store"?: Record<string, string>

    SSM parameter store references.

    "secrets-manager"?: Record<string, `${string}:${string}:${string}:${string}`>

    Secrets Manager references.

    shell?: string

    Shell to use for command execution.

    variables?: Record<string, string>

    Environment variables to expose.