使用自定义组织政策

本页面介绍了如何使用组织政策服务自定义限制条件来限制对以下 Google Cloud 资源执行的特定操作:

  • monitoring.googleapis.com/AlertPolicy
  • monitoring.googleapis.com/NotificationChannel
  • monitoring.googleapis.com/Snooze

如需详细了解组织政策,请参阅自定义组织政策

组织政策和限制条件简介

借助 Google Cloud 组织政策服务,您可以对组织的资源进行程序化集中控制。作为组织政策管理员,您可以定义组织政策,这是一组称为限制条件的限制,会应用于 Google Cloud 资源层次结构中的Google Cloud 资源及其后代。您可以在组织、文件夹或项目级强制执行组织政策。

组织政策为各种 Google Cloud 服务提供预定义限制条件。但是,如果您想要更精细地控制和自定义组织政策中受限的特定字段,还可以创建自定义限制条件并在组织政策中使用这些自定义限制条件。

政策继承

如果您对资源强制执行政策,默认情况下,该资源的后代会继承组织政策。例如,如果您对某个文件夹强制执行一项政策, Google Cloud 会对该文件夹中的所有项目强制执行该政策。如需详细了解此行为及其更改方式,请参阅层次结构评估规则

准备工作

  1. Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project.

  4. Install the Google Cloud CLI.
  5. To initialize the gcloud CLI, run the following command:

    gcloud init
  6. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  7. Make sure that billing is enabled for your Google Cloud project.

  8. Install the Google Cloud CLI.
  9. To initialize the gcloud CLI, run the following command:

    gcloud init
  10. 请确保您知道您的组织 ID

所需的角色

如需获得管理自定义组织政策所需的权限,请让您的管理员为您授予组织的 Organization Policy Administrator (roles/orgpolicy.policyAdmin) IAM 角色。如需详细了解如何授予角色,请参阅管理对项目、文件夹和组织的访问权限

您也可以通过自定义角色或其他预定义角色来获取所需的权限。

创建自定义限制条件

自定义限制条件是在 YAML 文件中,由实施组织政策的服务所支持的资源、方法、条件和操作定义的。自定义限制条件的条件使用通用表达式语言 (CEL) 进行定义。如需详细了解如何使用 CEL 构建自定义限制条件中的条件,请参阅创建和管理自定义限制条件的 CEL 部分。

如需创建自定义限制条件,请使用以下格式创建 YAML 文件:

name: organizations/ORGANIZATION_ID/customConstraints/CONSTRAINT_NAME
resourceTypes:
- RESOURCE_NAME
methodTypes:
- CREATE
- UPDATE
condition: "CONDITION"
actionType: ACTION
displayName: DISPLAY_NAME
description: DESCRIPTION

替换以下内容:

  • ORGANIZATION_ID:您的组织 ID,例如 123456789

  • CONSTRAINT_NAME:新的自定义限制条件的名称。 自定义限制条件必须以 custom. 开头,只能包含大写字母、小写字母或数字。例如 alertDocHasProject。该字段的最大长度为 70 个字符。

  • RESOURCE_NAME:包含要限制的对象和字段的Google Cloud 资源的完全限定名称。例如 monitoring.googleapis.com/AlertPolicy

  • CONDITION:针对受支持的服务资源的表示法编写的 CEL 条件。此字段的长度上限为 1,000 个字符。 如需详细了解可用于针对其编写条件的资源,请参阅支持的资源。 例如 resource.documentation.content.contains('${resource.project}')

  • ACTION:满足 condition 时要执行的操作。 可能的值包括 ALLOWDENY

  • DISPLAY_NAME:限制条件的直观易记名称。 此字段的最大长度为 200 个字符。

  • DESCRIPTION:直观易懂的限制条件说明,在违反政策时显示为错误消息。 此字段的长度上限为 2,000 个字符。

如需详细了解如何创建自定义限制条件,请参阅定义自定义限制条件

设置自定义限制条件

为新的自定义限制条件创建 YAML 文件后,您必须对其进行设置,以使其可用于组织中的组织政策。如需设置自定义限制条件,请使用 gcloud org-policies set-custom-constraint 命令:
gcloud org-policies set-custom-constraint CONSTRAINT_PATH
CONSTRAINT_PATH 替换为自定义限制条件文件的完整路径。例如 /home/user/customconstraint.yaml。完成后,您的自定义限制条件会成为 Google Cloud 组织政策列表中的组织政策。如需验证自定义限制条件是否存在,请使用 gcloud org-policies list-custom-constraints 命令:
gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
ORGANIZATION_ID 替换为您的组织资源的 ID。 如需了解详情,请参阅查看组织政策

强制执行自定义组织政策

如需强制执行布尔值限制条件,您可以创建引用该限制条件的组织政策,并将该组织政策应用于 Google Cloud 资源。

控制台

  1. 在 Google Cloud 控制台中,转到组织政策页面。

    转到组织政策

  2. 在项目选择器中,选择要设置组织政策的项目。
  3. 组织政策页面上的列表中选择您的限制条件,以查看该限制条件的政策详情页面。
  4. 如需为该资源配置组织政策,请点击管理政策
  5. 修改政策页面,选择覆盖父级政策
  6. 点击添加规则
  7. 强制执行部分中,选择开启还是关闭此组织政策的强制执行。
  8. (可选)如需使组织政策成为基于某个标记的条件性政策,请点击添加条件。请注意,如果您向组织政策添加条件规则,则必须至少添加一个无条件规则,否则无法保存政策。如需了解详情,请参阅设置带有标记的组织政策
  9. 如果是自定义限制条件,您可以点击测试更改来模拟此组织政策的效果。如需了解详情,请参阅使用 Policy Simulator 测试组织政策更改
  10. 若要完成并应用组织政策,请点击设置政策。该政策最长需要 15 分钟才能生效。

gcloud

如需创建强制执行布尔值限制条件的组织政策,请创建引用该限制条件的 YAML 政策文件:

      name: projects/PROJECT_ID/policies/CONSTRAINT_NAME
      spec:
        rules:
        - enforce: true
    

请替换以下内容:

  • PROJECT_ID:要对其实施限制条件的项目。
  • CONSTRAINT_NAME:您要强制执行的限制条件的名称。例如 alertDocHasProject

如需强制执行包含限制条件的组织政策,请运行以下命令:

    gcloud org-policies set-policy POLICY_PATH
    

POLICY_PATH 替换为组织政策 YAML 文件的完整路径。该政策最长需要 15 分钟才能生效。

测试自定义组织政策

以下示例创建了自定义限制条件和政策,用于检查提醒政策的文档是否提及了项目名称。

在开始之前,请替换以下内容:

  • ORGANIZATION_ID:组织的唯一数字标识符。如需了解如何获取此标识符,请参阅获取组织 ID
  • PROJECT_ID:项目的标识符。

创建限制条件

  1. 将以下文件保存为 constraint-alert-doc-has-project.yaml

        actionType: DENY
        condition: resource.documentation.content.contains('${resource.project}')
        description: Requires documentation to include the project name.
        displayName: Alerting policy documentation must include project name.
        methodTypes:
          - CREATE
          - UPDATE
        name: organizations/ORGANIZATION_ID/customConstraints/custom.alertDocHasProject
        resourceTypes:
          - monitoring.googleapis.com/AlertPolicy
    

    ORGANIZATION_ID 替换为您的组织 ID。

    如果提醒政策文档中缺少资源项目的名称,此约束条件会阻止创建或更新提醒政策。

  2. 应用限制条件:

    gcloud org-policies set-custom-constraint ~/constraint-alert-doc-has-project.yaml
    
  3. 验证限制条件存在:

    gcloud org-policies list-custom-constraints --organization=ORGANIZATION_ID
    

    输出类似于以下内容:

    CUSTOM_CONSTRAINT: custom.alertDocHasProject
    ACTION_TYPE: DENY
    METHOD_TYPES: CREATE,UPDATE
    RESOURCE_TYPES: monitoring.googleapis.com/AlertPolicy
    DISPLAY_NAME: Alerting policy documentation must include the project name.
    

创建政策

  1. 将以下文件保存为 policy-alert-doc-has-project.yaml

    name: projects/PROJECT_ID/policies/custom.alertDocHasProject
    spec:
      rules:
      - enforce: true
    

    PROJECT_ID 替换为您的项目 ID。

  2. 应用政策:

    gcloud org-policies set-policy ~/policy-alert-doc-has-project.yaml
    
  3. 验证政策存在:

    gcloud org-policies list --project=PROJECT_ID
    

    输出内容类似如下:

    CONSTRAINT: custom.alertDocHasProject
    LIST_POLICY: -
    BOOLEAN_POLICY: SET
    ETAG: CKSx5LwGEPjBuKwD-
    

应用政策后,请等待大约两分钟,以便 Google Cloud 开始强制执行政策。

测试政策

尝试创建包含排除资源项目名称的文档的提醒政策。

  gcloud alpha monitoring policies create \
    --display-name="CPU Utilization - 5% Threshold" \
    --project=PROJECT_ID \
    --condition-display-name="Condition 1" \
    --condition-filter='resource.type="gce_instance" AND metric.type="compute.googleapis.com/instance/cpu/utilization"' \
    --duration='60s' \
    --if='>5' \
    --combiner='AND' \
    --documentation='The ${metric.display_name} of the ${resource.type} ${resource.label.instance_id} has exceeded 5% for over 60 seconds.' \

PROJECT_ID 替换为您的项目 ID。

输出如下所示:

  Operation denied by custom org policies: ["customConstraints/alertDocHasProject": "Alerting policy documentation must include project name."]

常见用例的自定义组织政策示例

下表列出了一些常见用例的自定义限制条件的语法:

说明 限制条件语法
提醒政策只能有一个条件
    actionType: DENY
    condition: "resource.conditions.size() > 1"
    description: Requires alerting policies to have only one condition.
    displayName: Alerting policies must have only one condition
    methodTypes:
      - CREATE
      - UPDATE
    name: organizations/ORGANIZATION_ID/customConstraints/custom.oneCondition
    resourceTypes:
      - monitoring.googleapis.com/AlertPolicy
    
提醒政策必须使用至少两个通知渠道
    actionType: DENY
    condition: "resource.notificationChannels.size() < 2"
    description: Alerting policies must use at least two notification channels.
    displayName: Policies must have a backup notification channel
    methodTypes:
      - CREATE
      - UPDATE
    name: organizations/ORGANIZATION_ID/customConstraints/custom.alertOnTwoChannels
    resourceTypes:
      - monitoring.googleapis.com/AlertPolicy
    
仅允许使用电子邮件通知渠道
    actionType: DENY
    condition: "resource.type != 'email'"
    description: Requires notification channels to use only the email channel
    type.
    displayName: Always use email for notification channels
    methodTypes:
      - CREATE
      - UPDATE
    name: organizations/ORGANIZATION_ID/customConstraints/custom.emailChannelsOnly
    resourceTypes:
      - monitoring.googleapis.com/NotificationChannel
    
小睡时长不得超过 1 小时
    actionType: DENY
    condition: "int(resource.interval.endTime) > int(resource.interval.startTime) + 3600"
    description: Requires snoozes to be under 1 hour.
    displayName: Snooze must be less than 1 hour
    methodTypes:
    - CREATE
    - UPDATE
    name: organizations/ORGANIZATION_ID/customConstraints/custom.setMaxSnooze
    resourceTypes:
    - monitoring.googleapis.com/Snooze
    

Cloud Monitoring 支持的资源

下表列出了您可以在自定义限制条件中引用的 Cloud Monitoring 资源。

资源 字段
monitoring.googleapis.com/AlertPolicy resource.alertStrategy.autoClose
resource.alertStrategy.notificationChannelStrategy.notificationChannelNames
resource.alertStrategy.notificationChannelStrategy.renotifyInterval
resource.alertStrategy.notificationRateLimit.period
resource.combiner
resource.conditions.conditionAbsent.aggregations.alignmentPeriod
resource.conditions.conditionAbsent.aggregations.crossSeriesReducer
resource.conditions.conditionAbsent.aggregations.groupByFields
resource.conditions.conditionAbsent.aggregations.perSeriesAligner
resource.conditions.conditionAbsent.duration
resource.conditions.conditionAbsent.filter
resource.conditions.conditionAbsent.trigger.count
resource.conditions.conditionAbsent.trigger.percent
resource.conditions.conditionMatchedLog.filter
resource.conditions.conditionMatchedLog.labelExtractors
resource.conditions.conditionMonitoringQueryLanguage.duration
resource.conditions.conditionMonitoringQueryLanguage.evaluationMissingData
resource.conditions.conditionMonitoringQueryLanguage.query
resource.conditions.conditionMonitoringQueryLanguage.trigger.count
resource.conditions.conditionMonitoringQueryLanguage.trigger.percent
resource.conditions.conditionPrometheusQueryLanguage.alertRule
resource.conditions.conditionPrometheusQueryLanguage.duration
resource.conditions.conditionPrometheusQueryLanguage.evaluationInterval
resource.conditions.conditionPrometheusQueryLanguage.labels
resource.conditions.conditionPrometheusQueryLanguage.query
resource.conditions.conditionPrometheusQueryLanguage.ruleGroup
resource.conditions.conditionSql.booleanTest.column
resource.conditions.conditionSql.daily.periodicity
resource.conditions.conditionSql.hourly.minuteOffset
resource.conditions.conditionSql.hourly.periodicity
resource.conditions.conditionSql.minutes.periodicity
resource.conditions.conditionSql.query
resource.conditions.conditionSql.rowCountTest.comparison
resource.conditions.conditionSql.rowCountTest.threshold
resource.conditions.conditionThreshold.aggregations.alignmentPeriod
resource.conditions.conditionThreshold.aggregations.crossSeriesReducer
resource.conditions.conditionThreshold.aggregations.groupByFields
resource.conditions.conditionThreshold.aggregations.perSeriesAligner
resource.conditions.conditionThreshold.comparison
resource.conditions.conditionThreshold.denominatorAggregations.alignmentPeriod
resource.conditions.conditionThreshold.denominatorAggregations.crossSeriesReducer
resource.conditions.conditionThreshold.denominatorAggregations.groupByFields
resource.conditions.conditionThreshold.denominatorAggregations.perSeriesAligner
resource.conditions.conditionThreshold.denominatorFilter
resource.conditions.conditionThreshold.duration
resource.conditions.conditionThreshold.evaluationMissingData
resource.conditions.conditionThreshold.filter
resource.conditions.conditionThreshold.forecastOptions.forecastHorizon
resource.conditions.conditionThreshold.thresholdValue
resource.conditions.conditionThreshold.trigger.count
resource.conditions.conditionThreshold.trigger.percent
resource.conditions.displayName
resource.conditions.name
resource.displayName
resource.documentation.content
resource.documentation.links.displayName
resource.documentation.links.url
resource.documentation.mimeType
resource.documentation.subject
resource.enabled
resource.name
resource.notificationChannels
resource.severity
monitoring.googleapis.com/NotificationChannel resource.description
resource.displayName
resource.enabled
resource.type
monitoring.googleapis.com/Snooze resource.criteria.policies
resource.displayName
resource.interval.endTime
resource.interval.startTime

后续步骤