https://pulumi.com logo
#getting-started
Title
# getting-started
s

stocky-butcher-62635

04/11/2022, 12:22 PM
config.Require(...)
returns
Output<string>
and there is no way to get the actual value?
p

polite-summer-58169

04/12/2022, 11:07 AM
Maybe you forgot to pass in the name of the config you wanted. E.g. to get the config "azure-nativelocation WestEurope:
var azureConfig = new Config("azure-native");
var location = azureConfig.Require("location");
5 Views