does `new aws.Provider()` use aws:* configs?
# aws
v
does
new aws.Provider()
use aws:* configs?
l
The default instance does. I think if you create your own instance, it takes only the args given to it? Not sure.
s
The provider will still grab your default credentials, so e.g. if you're deploying everything to multiple regions, but in the same account, all you need to do is specify a different region for the declared provider.
👍 1