This message was deleted.
# general
s
This message was deleted.
d
export const subdomain = config.get('subdomain') || 'm2';
Without the last part it's just undefined (unless I define it in the
Pulumi.foo.yaml
)
w
This is only used as part of templates (note it's in the
template
section).
pulumi new
when processing a template that includes a
Pulumi.yaml
like this will present the default value as the default in the wizard. But this section will be removed from the actually created project. Adding support for declarative config (which might be what you were expecting this to do) is being tracked in https://github.com/pulumi/pulumi/issues/1052.
🙏 1
d
@white-balloon-205 thank you!