For teams that are scaling like our team, I have t...
# random
d
For teams that are scaling like our team, I have to say that AWS's search UI in their console is totally abysmal. They're all implemented differently, and pagination and searching seems to be done client side. We have at minimum 2000 lambdas in between all our devs and live envs. Phew! Pretty interesting problem to solve later.
a
Did you check IaQ?
Infra as query?
I agree Console is a pain.
I think this can work for you.
Apparenlty cloudQuery is down, but I’ve used this code: https://github.com/cloudquery/cloudquery
I’ve been able to query AWS from a SQL console, way better.
Maybe you can build some queries and share with your team.
That can prevent also from people to modify AWS resources from Console, which is manual and not wanted.
g
I would recommend setting up AWS organizations and AWS SSO giving each dev their own AWS account and each stage its own account. If you do have tons of functions in your app even whenever its only one stage deployed on the account it will still be somewhat an issue but it wont be as big an issue.
a
I agree with that too.
d
@Adrián Mouly IaQ is very cool! This is my first time seeing such a thing.
@Garret Harp Great advice. We're moving towards that direction, putting all devs into one account. We hadn't considered spending more time to setup an aws account per dev, but that may be worth it.
thanks everyone