Hi, hopefully this is a simple one, how do I acces...
# general
l
Hi, hopefully this is a simple one, how do I access the parameters which the provider libraries require. Specifically I want to get the value of the current region this doesn't seem to get me what I want
Copy code
const region: string = new pulumi.Config().require("aws:region");
a
aws.config.region
(where
aws
is
import * as aws from '@pulumi/aws'
) 🙂
l
ahh, great. Thanks @agreeable-apple-15721
a
No worries! I hit this too 🙂