sparse-intern-71089
04/08/2022, 3:26 PMbillowy-army-68599
string applicationName = config.Require("RwbPulumiProject:ApplicationName");
which means it needs to be set as:
pulumi config set RwbPulumiProject:RwbPulumiProject:ApplicationName
If you change your code to:
string applicationName = config.Require("ApplicationName");
it should workbillowy-army-68599
Is is possible to rename the class from MyStack? My* really makes my skin crawl.Yes, of course it's possible. You'd just need to modify the async call
stocky-butcher-62635
04/08/2022, 3:42 PMazure-native:location: uksouth
but that appears to be impossible to read either with or without the prefixgreat-queen-39697
04/08/2022, 3:54 PMpulumi config set
terminal command versus writing them in the YAML file directly. it's of the form pulumi config set <key> <value>
. So, for your example, you would run pulumi config set azure-native:location uksouth
(as an example, here's how someone set up an Azure Native C# Pulumi program)stocky-butcher-62635
04/08/2022, 4:00 PMstocky-butcher-62635
04/08/2022, 4:00 PMgreat-queen-39697
04/08/2022, 4:27 PMbillowy-army-68599
string awsNative = config.Require("aws-native");