Hello Everyone, Simple questions, trying out SST a...
# sst
m
Hello Everyone, Simple questions, trying out SST and I don't see any option to choose which AWS profile I want to run against. Does SST only run against the default profile? I have another AWS account on that profile at the moment.
s
I modify my package.json to specify different profiles using environment variables
Copy code
"scripts": {
    "start": "AWS_PROFILE=CC-Non-Prod.CC_Engineering_ReadWrite AWS_SDK_LOAD_CONFIG=1 sst start"
}
m
Thanks, That seems to work