This message was deleted.
# general
s
This message was deleted.
l
@damp-cartoon-25024 am I right
app
is your project name? This is for config the default namespace. If you want to retrieve
subscriptionId
from the
azure
namespace, you have to create a separate config object for the
azure
namespace first, then retrieve the right key:
Copy code
const azureConfig = new pulumi.Config("azure");
const subscription = azureConfig.require("subscriptionId");
❤️ 1
d
Ah! That makes sense! Now I get where I went wrong. Thanks!