how can I get the value of "aws:region" from pulum...
# general
b
how can I get the value of "aws:region" from pulumi config?
s
aws.config.region
b
thanks, unfortunately, it can be undefined, so using something like const awsConfig = new pulumi.Config('aws') const region = awsConfig.require('region') as aws.Region looks like an easier option