Hey everyone, Is there a good/proper way of handli...
# help
a
Hey everyone, Is there a good/proper way of handling the console as a team as it seems to currently be linked directly to the device used to deploy the app?
t
the console uses your local AWS credentials
so there shouldn't be anything additional to think about when using it as a team afaik
f
That’s right. @Art Kelly is there anything specific concern you have or features you are looking for for the team usage?
a
I think ill have to make a set of general dev account credentials for our setup then, Currently everyone has their own unique aws iam user for development so I don't think it'll link the project to all the devs who are working on it
t
This shouldn't be required @Art Kelly can you tell us a little more about what you're seeing
you can use
sst console --stage=prod
to connect to other stages besides the development environment
a
Hi, everyone has their own account and access keys, at the moment everyone deploys their own work manually to aws however we are looking to shift to serverless and use sst to do that. The scenario is that I might like several developers to access the console at once and not just whoever is leading the project. As it stands only the developer who deployed the project can view the console because it is linked directly to their access keys which are not shared around the office.
t
When you say everyone has their own account do you mean AWS account or do you mean IAM user
To reiterate the console is not linked to whoever deployed the project
a
Everyone has their own IAM user
t
ok there shouldn't be any problem
if I deploy a project by doing
sst deploy --stage=production
anyone else can view the console by doing
sst console --stage=production
a
Okay, ill give that a go, thank you for the advice
Got it all working, thank you