how can I specify default values for stack configu...
# general
e
how can I specify default values for stack configuration? For now the only way I see is:
Copy code
const config = new pulumi.Config();
const configVar:string = config.get('configVar') ? config.get('configVar') : 'someDefaultValue'