sparse-intern-71089
12/14/2022, 9:28 AMlimited-rainbow-51650
12/14/2022, 9:47 AMapp
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:
const azureConfig = new pulumi.Config("azure");
const subscription = azureConfig.require("subscriptionId");
damp-cartoon-25024
12/14/2022, 9:55 AM