single account setup #25
-
Hi everyone, Is it possible to somehow use reference architecture in one account? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
So we're currently in the middle of a large refactor to split apart our components similar to modules. With that and some newer features in atmos, I would say that will be easy to do. Until that finishes, I'd say it could be done but not without some caveats. Basically, it sounds like you just want a If you can get away with three accounts, You describe wanting VPC, IAM, and EKS? Really, might be fine just using the modules directly. If you use the components as a way to implement them, but replace I hope this makes sense, and if you have more questions about those modules, feel free to ask. |
Beta Was this translation helpful? Give feedback.
So we're currently in the middle of a large refactor to split apart our components similar to modules. With that and some newer features in atmos, I would say that will be easy to do. Until that finishes, I'd say it could be done but not without some caveats.
Basically, it sounds like you just want a
root
account that acts likeplat-prod
. I think the bare minimum to get refarch running without much changes is two accounts...identity
androot
. You can still munge identity into prod, but it will be pretty tedious.If you can get away with three accounts,
core-root
,core-identity
, andplat-prod
, then it wouldn't be as painful in my opinion. But otherwise it's best to run your own architectu…