使用 Terraform 启用 Access Approval

Terraform 是一种开源基础设施即代码软件工具, 供您管理 Access Approval 请求。借助 Terraform,您可以执行使用 Access Approval API 可执行的所有操作。

本页面介绍了如何使用 Terraform 启用 Access Approval。 本教程使用 Google Cloud Terraform 提供程序

目标

本教程介绍了如何创建一个 Terraform 配置文件,以便:

  • 设置用于接收 Access Approval 请求通知的电子邮件地址。
  • 为所有受支持的 Google Cloud 产品启用 Access Approval。如需查看 Access Approval 支持的 Google Cloud 产品的完整列表,请参阅支持的服务

准备工作

创建 Google Cloud 项目

  1. 登录您的 Google Cloud 账号。如果您是 Google Cloud 新手,请创建一个账号来评估我们的产品在实际场景中的表现。新客户还可获享 $300 赠金,用于运行、测试和部署工作负载。
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Enable the Access Approval API.

    Enable the API

  4. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  5. Enable the Access Approval API.

    Enable the API

安装 Google Cloud CLI

Install the Google Cloud CLI, then initialize it by running the following command:

gcloud init

出现提示时,选择您之前选择或创建的项目。

如果您已安装 Google Cloud CLI,请使用以下命令进行更新:

gcloud components update

创建 Terraform 配置文件

  1. 打开 Cloud Shell 以启动独立的 Cloud Shell 会话。
  2. 打开相应工作区。
  3. 创建新文件夹。
  4. 将名为 main.tf 的 Terraform 配置文件添加到此文件夹中。
  5. 复制以下资源并将其粘贴到 main.tf 文件中。

    main.tf

    variable "parent_value" {
    type        = string
    }
    
    variable "email_1" {
    type        = string
    }
    
    variable "email_2" {
    type        = string
    }
    
    resource "google_folder" "my_folder" {
    display_name = "my-folder"
    parent       = var.parent_value
    # parent = "organizations/123456789"
    }
    
    resource "google_folder_access_approval_settings" "folder_access_approval" {
    folder_id           = google_folder.my_folder.folder_id
    notification_emails = [var.email_1, var.email_2]
    
    enrolled_services {
      cloud_product = "all"
      }
    }
    

    输入以下变量的值:

    • email_1email_2:提供您要将其设置为此项目的访问权限请求审核者的电子邮件地址。
    • parent_value:您要创建 my_folder 文件夹所在的文件夹的名称。有关文件夹的详细信息,请参阅创建和 管理文件夹

运行 Terraform 配置文件

在 Cloud Shell 中运行以下命令。

  1. 在目录中初始化 Terraform。

    terraform init
    
  2. 运行创建的 Terraform 配置文件。

    terraform apply
    
  3. 当系统提示您确认是否要运行配置文件时,请输入 yes

如需详细了解如何使用 Terraform 操作 Access Approval,请参阅以下 Terraform 文档:google_folder_access_approval_settings

后续步骤