Description
It is recommended that a metric filter and alarm be established for changes to Identity and Access Management (IAM) role creation, deletion, and updates.
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 meet 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 updates helps identify over-privileged roles early.
Impactโ
Enabling logging may result in your project being charged for additional log 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 at least one alert policy where:
-
conditions.conditionThreshold.filteris set tometric.type=\"logging.googleapis.com/user/<Log Metric Name>\" -
AND
enabledis set totrue.
-