This message was deleted.
# python
s
This message was deleted.
m
Copy code
const azureConfig = new pulumi.Config("azure");
const azureNativeConfig = new pulumi.Config("azure-native");

cost location = azureNativeConfig.get("location");
cost subscriptionId = azureConfig.get("subscriptionId");
b
Thank you 🙏 Used this Python code:
azure_cfg = pulumi.Config("azure")
subscription_id = azure_cfg.get("subscriptionId");
Didn't know about the default behavior of Config(), in case now parameter is supplied. But that explains it.