本文由簡體中文內容自動轉碼而成。阿里雲不保證此自動轉碼的準確性、完整性及時效性。本文内容請以簡體中文版本為準。

通過Terraform建立和刪除資來源目錄的成員

更新時間:2025-02-17 19:17

本文為您介紹如何通過Terraform在資來源目錄中建立和刪除資來源目錄的成員。

說明

本教程所含範例程式碼支援一鍵運行,您可以直接運行代碼。一鍵運行

前提條件

  • 為了降低資訊安全風險,建議使用資來源目錄管理帳號下的RAM使用者完成此教程的操作,並為RAM使用者授予許可權AliyunResourceDirectoryFullAccess。請參見建立RAM使用者為RAM使用者授權.

  • 只有開啟了成員刪除許可,才能刪除成員。具體操作,請參見開啟或關閉成員刪除許可

  • 只能刪除在資來源目錄中建立的成員,不能刪除通過邀請方式加入到資來源目錄的雲帳號類型的成員。關於刪除成員的更多資訊,請參見刪除資源帳號類型的成員

  • 準備Terraform運行環境,您可以選擇以下任一方式來使用Terraform。

    • 在Terraform Explorer中使用Terraform:阿里雲提供了Terraform的線上運行環境,您無需安裝Terraform,登入後即可線上使用和體驗Terraform。適用於零成本、快速、便捷地體驗和調試Terraform的情境。

    • Cloud Shell:阿里雲Cloud Shell中預裝了Terraform的組件,並已配置好身份憑證,您可直接在Cloud Shell中運行Terraform的命令。適用於低成本、快速、便捷地訪問和使用Terraform的情境。

    • 在本地安裝和配置Terraform:適用於網路連接較差或需要自訂開發環境的情境。

使用的資源

步驟一:建立成員

  1. 建立一個工作目錄,並在該工作目錄中建立名為main.tf的設定檔。以下代碼將建立一個成員,並輸出成員UID,將代碼複製到main.tf中。

    resource "random_integer" "default" {
      min = 10000
      max = 99999
    }
    resource "alicloud_resource_manager_account" "default" {
      display_name = "RDAccount_auto_${random_integer.default.result}"
    }
  2. 執行如下命令,初始化Terraform運行環境。

    terraform init

    返回資訊如下,則Terraform初始化成功。

    Terraform has been successfully initialized!
    
    You may now begin working with Terraform. Try running "terraform plan" to see
    any changes that are required for your infrastructure. All Terraform commands
    should now work.
    
    If you ever set or change modules or backend configuration for Terraform,
    rerun this command to reinitialize your working directory. If you forget, other
    commands will detect it and remind you to do so if necessary.
  3. 執行如下命令,開始執行代碼。

    terraform apply

    在執行過程中,根據提示輸入yes並按下Enter鍵,等待命令執行完成,若出現以下資訊,則表示代碼執行成功。記錄輸出的成員UID,用於後續刪除成員。

    You can apply this plan to save these new output values to the Terraform state, without changing any real infrastructure.
    
    Do you want to perform these actions?
      Terraform will perform the actions described above.
      Only 'yes' will be accepted to approve.
    
      Enter a value: yes
    
    Apply complete! Resources: 2 added, 0 changed, 0 destroyed.
    Outputs:
    
    created_account_id = 10638349********
  4. 驗證結果。

    執行terraform show命令
    登入控制台查看

    您可以在工作目錄中,使用以下命令查詢Terraform已建立資源的詳細資料:

    terraform show

    image

    登入資源管理主控台,進入資來源目錄 > 目錄管理頁面,單擊成員列表,查看已建立的成員。

    image

步驟二:刪除成員

  1. 修改main.tf檔案,增加刪除資來源目錄成員前的帳號檢查,將account_id的值改為成員UID,修改完成後的代碼如下:

    resource "random_integer" "default" {
      min = 10000
      max = 99999
    }
    
    # 成員
    resource "alicloud_resource_manager_account" "example" {
      display_name          = "account-example-${random_integer.default.result}"
      abandon_able_check_id = data.alicloud_resource_manager_account_deletion_check_task.task.abandon_able_checks.*.check_id
    }
    
    # 刪除資來源目錄成員前的帳號檢查。
    data "alicloud_resource_manager_account_deletion_check_task" "task" {
      account_id = "1063834936242667"
    }
  2. 執行如下命令,開始進行刪除資來源目錄成員前的帳號檢查。

    terraform apply

    在執行過程中,根據提示輸入yes並按下Enter鍵,等待命令執行完成,若出現以下資訊,則表示代碼執行成功。

    You can apply this plan to save these new output values to the Terraform state, without changing any real infrastructure.
    
    Do you want to perform these actions?
      Terraform will perform the actions described above.
      Only 'yes' will be accepted to approve.
    
      Enter a value: yes
    
    Apply complete! Resources: 0 added, 1 changed, 0 destroyed.
  3. 執行如下命令,開始刪除成員。

    terraform destroy

    在執行過程中,根據提示輸入yes並按下Enter鍵,等待命令執行完成,若出現以下資訊,則表示代碼執行成功。

    random_integer.default: Refreshing state... [id=*****]
    data.alicloud_resource_manager_account_deletion_check_task.task: Refreshing state...
    alicloud_resource_manager_account.example: Refreshing state... [id=10638349********]
    
    Plan: 0 to add, 0 to change, 2 to destroy.
    
    Do you really want to destroy all resources?
      Terraform will destroy all your managed infrastructure, as shown above.
      There is no undo. Only 'yes' will be accepted to confirm.
    
      Enter a value: yes
    
    Destroy complete! Resources: 2 destroyed.
  4. 驗證結果。

    登入資源管理主控台,進入資來源目錄 > 目錄管理頁面,單擊成員列表,查看成員狀態,顯示為刪除中。

    image

    單擊該成員操作列的查看刪除進展,顯示該成員處於刪除靜默期中,關於靜默期的更多資訊,請參見什麼是成員刪除的靜默期?。靜默期結束後,會自動執行刪除操作。

    image

  • 本頁導讀 (1, M)
  • 前提條件
  • 使用的資源
  • 步驟一:建立成員
  • 步驟二:刪除成員
文檔反饋