Piotr Nowicki
Piotr Nowicki

Reputation: 18174

What is the best way to separate projects in AWS services?

I would like to have a strict split between my own, personal, services in the AWS. These services can be split into two categories:

What is the best solution in 2021 to address this challenge? Multiple AWS accounts or AWS Organizations or something else?

The requirements are:

Upvotes: 2

Views: 437

Answers (1)

Marcin
Marcin

Reputation: 238299

A common way to address your use-case is through AWS Organizations. Using AWS Org you would have one management account and two member accounts for your services.

This allows you to consolidate all the billing as well as setup Org level Service control policies to manage permissions in your member account.

It is also common to have a dedicated security member account which will be a central repository of various logs from other accounts.

Upvotes: 2

Related Questions