Interface EnvironmentDefinitionValues

Export

EnvironmentDefinitionValues

interface EnvironmentDefinitionValues {
    environmentVariables?: {
        [key: string]: string;
    };
    files?: {
        [key: string]: string;
    };
    pulumiConfig?: {
        [key: string]: any;
    };
    [key: string]: object | any;
}

Indexable

[key: string]: object | any

Properties

environmentVariables?: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string

Memberof

EnvironmentDefinitionValues

files?: {
    [key: string]: string;
}

Type declaration

  • [key: string]: string

Memberof

EnvironmentDefinitionValues

pulumiConfig?: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any

Memberof

EnvironmentDefinitionValues

Generated using TypeDoc