Khởi tạo Terraform Environment

Cập nhật lần cuối: 2026/01/28 14:11:39

ĐIỀU KIỆN

  • Cài đặt Terraform 
  • API Key: Khởi tạo trong phần cài đặt tài khoản - IAM 
  • Project ID: Lấy từ mục Quản lý dự án (IAM).
  • Region ID: Xác định vùng muốn triển khai (ví dụ: hn-1 cho Hà Nội hoặc hcm-1 cho TP. Hồ Chí Minh).

 

Trang chủ của CMC Provider: https://registry.terraform.io/providers/cmc-cloud/cmccloudv2/latest

 

CÁC BƯỚC THỰC HIỆN

Hướng dẫn cài đặt Terraform cho Linux

Dưới đây là hướng dẫn setup Terraform environment cho CMC Cloud ( thực hiện với linux)

Bước 1:  Cài đặt Terraform

Cài đặt phiên bản mới nhất từ trang chủ của Terraform, tham khảo link sau: 

https://developer.hashicorp.com/terraform/install

 

ex: Cài đặt Terraform 1.5.7

# 1. Tải về
wget https://releases.hashicorp.com/terraform/1.5.7/terraform_1.5.7_linux_amd64.zip

# 2. Giải nén
unzip terraform_1.5.7_linux_amd64.zip

# 3. Di chuyển vào thư mục thực thi (Lưu ý dấu cách trước dấu #)
sudo mv terraform /usr/local/bin/

# 4. Dọn dẹp file zip
rm terraform_1.5.7_linux_amd64.zip

# 5. Kiểm tra kết quả

which terraform && terraform version


terraform -version

Bước 2 : Truy cập CMC provider trên Terraform registry qua link sau: https://registry.terraform.io/providers/cmc-cloud/cmccloudv2/latest

 

Lựa chọn Latest version. Chọn Use Provider

Bước 4: Cấu hình file provider.tf trên thư mục của dự án dựa theo thông tin sau

mkdir -p /usr/src/test

cd /usr/src/test

vi provider.tf

terraform {
  required_providers {
    cmccloudv2 = {
      source = "cmc-cloud/cmccloudv2"
      version = "1.2601.2"
    }
  }
}
provider "cmccloudv2" {
    api_endpoint = "https://apiv2.cloud.cmctelecom.vn"
    api_key = "xxxxxx"   # API key from cmccloud portal
    project_id = "xxxxxxx" # project_id from IAM on portal
    region_id = "xxx" # Choose the region, ex hn-1 or hcm-1

}

Chạy lệnh terraform init để tải xuống Provider cmccloudv2 từ Registry và khởi tạo môi trường làm việc

 

    back to top

    logo

    © 2023, CMC Cloud. All rights reserved.

    Business Registration Certificate

    Giấy ĐKKD: 0102900049. Nơi cấp: Sở Kế hoạch & Đầu tư Thành phố Hà Nội

    Chịu trách nhiệm nội dung: Đặng Tùng Sơn