Description
It is recommended that a metric filter and alarm be established for changes to Identity and Access Management (IAM) role creation, deletion and updating activities.
Rationaleโ
Google Cloud IAM provides predefined roles that give granular access to specific Google Cloud Platform resources and prevent unwanted access to other resources. However, to cater to organization-specific needs, Cloud IAM also provides the ability to create custom roles. Project owners and administrators with the Organization Role Administrator role or the IAM Role Administrator role can create custom roles. Monitoring role creation, deletion and updating activities will help in identifying any over-privileged role at early stages.
Impactโ
Enabling of logging may result in your project being charged for the additional logs usage.
Auditโ
From Google Cloud Consoleโ
Ensure that the prescribed log metric is present:
-
Go to
Logging/Logs-based Metricsby visiting https://console.cloud.google.com/logs/metrics. -
In the
User-defined Metricssection, ensure that at least one metric<Log_Metric_Name>is present with filter text:resource.type="iam_role"
AND (protoPayload.methodName="google.iam.admin.v1.CreateRole"
OR protoPayload.methodName="google.iam.admin.v1.DeleteRole"
OR protoPayload.methodName="google.iam.admin.v1.UpdateRole")
Ensure that the prescribed alerting policy is present:
- Go to
Alertingby visiting https://console.cloud.google.com/monitoring/alerting. - Under the
Policiessection, ensure that at least one alert policy exists for the log metric above. Clicking on the policy should show that it is configured with a condition. For example,Violates when: Any logging.googleapis.com/user/<Log Metric Name> stream is above a threshold of zero(0) for greater than zero(0) secondsmeans that the alert will trigger for any new owner change. Verify that the chosen alerting thresholds make sense for the user's organization. - Ensure that the appropriate notifications channels have been set up.
From Google Cloud CLIโ
Ensure that the prescribed log metric is present:
-
List the log metrics:
gcloud logging metrics list --format json -
Ensure that the output contains at least one metric with the filter set to:
resource.type="iam_role"
AND (protoPayload.methodName = "google.iam.admin.v1.CreateRole"
OR protoPayload.methodName="google.iam.admin.v1.DeleteRole"
OR protoPayload.methodName="google.iam.admin.v1.UpdateRole") -
Note the value of the property
metricDescriptor.typefor the identified metric, in the formatlogging.googleapis.com/user/<Log Metric Name>.
Ensure that the prescribed alerting policy is present:
-
List the alerting policies:
gcloud alpha monitoring policies list --format json
-
Ensure that the output contains an least one alert policy where:
โข
conditions.conditionThreshold.filteris set tometric.type=\"logging.googleapis.com/user/<Log Metric Name>\"โข AND
enabledis set totrue.