diff --git a/src/configuration.ts b/src/configuration.ts index eef527a..23b7e66 100644 --- a/src/configuration.ts +++ b/src/configuration.ts @@ -138,7 +138,7 @@ export class StackConfig { // Look up stack-specific property, failing over to stage if not overridden for this stack const value = this.stack?.[name] ?? this.stage.getProperty(name) ?? default_value - if (value) { + if (value !== undefined && value !== null) { return value } throw new Error(`Missing value ${name} for stack`)