Interface ConfigEntityExportOptions

Idm export options

interface ConfigEntityExportOptions {
    entitiesToExport?: string[];
    envReplaceParams?: string[][];
}

Properties

entitiesToExport?: string[]

Gives a list of entities to export. If undefined or empty, it will export all entities.

envReplaceParams?: string[][]

Gives the list of key-value pairs of env replacements. Replaces each occurrence of the value with '${key}', where key is the correspond key to the value.