lacework-global-294
1.8 Ensure That Separation of Duties Is Enforced While Assigning Service Account Related Roles to Users (Manual)
This rule has been changed to manual, see Manual Rules for CIS GCP 1.3.0 for details.
Profile Applicability
• Level 2
Description
It is recommended that the principle of 'Separation of Duties' is enforced while assigning service-account related roles to users.
Rationale
The built-in/predefined IAM role Service Account admin allows the user/identity to create, delete, and manage service account(s).
The built-in/predefined IAM role Service Account User allows the user/identity (with adequate privileges on Compute and App Engine) to assign service account(s) to Apps/Compute Instances.
Separation of duties is the concept of ensuring that one individual does not have all necessary permissions to be able to complete a malicious action. In Cloud IAM - service accounts, this could be an action such as using a service account to access resources that user should not normally have access to.
Separation of duties is a business control typically used in larger organizations, meant to help avoid security or privacy incidents and errors. It is considered best practice.
No user should have Service Account Admin and Service Account User roles assigned at the same time.
Impact
The removed role should be assigned to a different user based on business needs.
Audit
From Console:
Go to
IAM & Admin/IAMusinghttps://console.cloud.google.com/iam-admin/iam.Ensure no member has the roles
Service Account AdminandService account Userassigned together.
From Command Line:
- List all users and role assignments:
gcloud projects get-iam-policy [Project_ID] --format json | \
jq -r '[
(["Service_Account_Admin_and_User"] | (., map(length*"-"))),
(
[
.bindings[] |
select(.role == "roles/iam.serviceAccountAdmin" or .role == "roles/iam.serviceAccountUser").members[]
] |
group_by(.) |
map({User: ., Count: length}) |
.[] |
select(.Count == 2).User |
unique
)
] |
.[] |
@tsv'
- All common users listed under
Service_Account_Admin_and_Userare assigned both theroles/iam.serviceAccountAdminandroles/iam.serviceAccountUserroles.
Remediation
From Console:
Go to
IAM & Admin/IAMusinghttps://console.cloud.google.com/iam-admin/iam.For any member having both
Service Account AdminandService account Userroles granted/assigned, click theDelete Binicon to remove either role from the member. Removal of a role should be done based on the business requirements.
References
https://cloud.google.com/iam/docs/service-accounts
https://cloud.google.com/iam/docs/understanding-roles
https://cloud.google.com/iam/docs/granting-roles-to-service-accounts
Additional Information
Users granted with Owner (roles/owner) and Editor (roles/editor) have privileges equivalent to Service Account Admin and Service Account User. To avoid the misuse, Owner and Editor roles should be granted to very limited users and Use of these primitive privileges should be minimal. These requirements are addressed in separate recommendations.