本文由簡體中文內容自動轉碼而成。阿里雲不保證此自動轉碼的準確性、完整性及時效性。本文内容請以簡體中文版本為準。
本文為您介紹如何通過Terraform在資來源目錄中建立和刪除資來源目錄的成員。
說明
本教程所含範例程式碼支援一鍵運行,您可以直接運行代碼。一鍵運行
步驟一:建立成員
建立一個工作目錄,並在該工作目錄中建立名為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}"
}
執行如下命令,初始化Terraform運行環境。
返回資訊如下,則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.
執行如下命令,開始執行代碼。
在執行過程中,根據提示輸入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********
驗證結果。
執行terraform show命令
登入控制台查看
您可以在工作目錄中,使用以下命令查詢Terraform已建立資源的詳細資料:

步驟二:刪除成員
修改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"
}
執行如下命令,開始進行刪除資來源目錄成員前的帳號檢查。
在執行過程中,根據提示輸入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.
執行如下命令,開始刪除成員。
在執行過程中,根據提示輸入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.
驗證結果。
登入資源管理主控台,進入頁面,單擊成員列表,查看成員狀態,顯示為刪除中。

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