sparse-intern-71089
05/29/2023, 4:16 PMbillowy-army-68599
pulumi config set azure:clientid <value>
This isn’t correct, it needs to be azure:clientId
- note the casing
var config = new Pulumi.Config();
var clientId = config.Require("azure:clientId");
This is also incorrect, config is namespaced, so you’d need to do:
var config = new Pulumi.Config("azure");
var clientId = config.Require("clientId");
Config is namespaced. Again, note the casing.numerous-solstice-19110
05/29/2023, 4:39 PMvar config = new Pulumi.Config("aws");
var clientId = config.Require("foo");
?billowy-army-68599
billowy-army-68599
billowy-army-68599
var config = new Pulumi.Config("aws");
needs a valid value from the AWS providernumerous-solstice-19110
05/29/2023, 4:44 PMbillowy-army-68599