This message was deleted.
# typescript
s
This message was deleted.
g
For AWS-specific values, you'll still need to use the
aws
context and for non-AWS use the "default". e.g.
Copy code
const awsConfig = new pulumi.Config("aws");
const configRegion = awsConfig.require("region");

const config = new pulumi.Config();
const otherValue = config.require("otherValue");
Note: we have an issue open to make this simpler - https://github.com/pulumi/pulumi/issues/3730.
s
Got it. That's how I solved it temporarily while awaiting a response; now I know my temporary fix is the permanent fix. Thank you!
👍 2