Control: 1.5 Ensure that Service Account has no Admin privileges
Description
A service account is a special Google account that belongs to an application or a VM, instead of to an individual end-user. The application uses the service account to call the service's Google API so that users aren't directly involved. It's recommended not to use admin access for ServiceAccount.
Service accounts represent service-level security of the Resources (application or a VM) which can be determined by the roles assigned to it. Enrolling ServiceAccount with Admin rights gives full access to an assigned application or a VM. A ServiceAccount Access holder can perform critical actions like delete, update change settings, etc. without user intervention. For this reason, it's recommended that service accounts not have Admin rights.
Remediation
From Console
- Go to IAM & admin/IAM console
- Go to the
Members
- Identify User-Managed user created service account with roles containing
*Admin
or*admin
or role matchingEditor
or role matchingOwner
- Click the
pencil
at the end of the service account row, click on Delete bin icon to remove the role from the member (service account in this case)
From Command Line
- Get the associated IAM policygcloud projects get-iam-policy PROJECT_ID --format json > iam.json
- Using a text editor, Remove Role which contains roles/*Admin or roles/*admin or matched roles/editor or matches roles/owner. Add a role to the bindings array that defines the group members and the role for those members.
- Update the project's IAM policygcloud projects set-iam-policy PROJECT_ID iam.json
Usage
Run the control in your terminal:
powerpipe control run gcp_compliance.control.cis_v130_1_5
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run gcp_compliance.control.cis_v130_1_5 --share
SQL
This control uses a named query:
iam_service_account_without_admin_privilege