This message was deleted.
# azure
s
This message was deleted.
m
Personally I don't put them in my configuration but I can get the current subscription id used with the following code:
Copy code
const azureConfig = pulumi.output(authorization.getClientConfig());
const subscriptionId = azureConfig.subscriptionId;
for the configuration set in the yaml file, according to the documentation you could do something like that:
Copy code
let awsConfig = new pulumi.Config("azure-native");
let subscriptionId = awsConfig.require("subscriptionId");
m
Ok thanks
m
Yes it does.
m
Yep I changed also converted the demo into a template you can check it out here -> https://github.com/rprakashg-redhat/pulumi-aro