Deploy Cloud Application Server Group
Application Scenario
Huawei Cloud Cloud Desktop (Workspace) is a cloud computing-based desktop virtualization service that provides enterprise users with secure and convenient cloud office solutions. Cloud application server groups are an important component of the Workspace service, used to host various applications and provide users with a unified application access experience.
Through cloud application server groups, enterprises can achieve centralized application deployment, unified management, and security control. Users can access cloud applications through various terminal devices without installing and maintaining software locally. This best practice will introduce how to use Terraform to automatically deploy Workspace cloud application server groups.
Related Resources/Data Sources
This best practice involves the following main resources and data sources:
Data Sources
Resources
Resource/Data Source Dependencies
data.huaweicloud_workspace_service.test
└── huaweicloud_workspace_app_server_group.testOperation Steps
1. Script Preparation
Prepare the TF file (e.g., main.tf) in the specified workspace for writing the current best practice script, ensuring that it (or other TF files in the same directory) contains the provider version declaration and Huawei Cloud authentication information required for deploying resources. Refer to the "Preparation Before Deploying Huawei Cloud Resources" document for configuration introduction.
2. Query Workspace Service Information Through Data Source
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to perform a data source query, the results of which are used to create cloud application server groups:
Parameter Description:
This data source requires no additional parameters and automatically queries Workspace service information in the current region
3. Create Workspace Cloud Application Server Group
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a cloud application server group resource:
Parameter Description:
name: Cloud application server group name, assigned by referencing the input variable app_server_group_name
app_type: Application type, assigned by referencing the input variable app_server_group_app_type, default is "SESSION_DESKTOP_APP"
os_type: Operating system type, assigned by referencing the input variable app_server_group_os_type, default is "Windows"
flavor_id: Flavor ID, assigned by referencing the input variable app_server_group_flavor_id
image_type: Image type, fixed as "gold" (golden image)
image_id: Image ID, assigned by referencing the input variable app_server_group_image_id
image_product_id: Image product ID, assigned by referencing the input variable app_server_group_image_product_id
vpc_id: VPC ID, assigned based on the return results of the Workspace service query data source (data.huaweicloud_workspace_service)
subnet_id: Subnet ID, assigned based on the return results of the Workspace service query data source (data.huaweicloud_workspace_service)
system_disk_type: System disk type, assigned by referencing the input variable app_server_group_system_disk_type, default is "SAS"
system_disk_size: System disk size, assigned by referencing the input variable app_server_group_system_disk_size, default is 80GB
is_vdi: Whether it is VDI mode, fixed as true
4. Preset Input Parameters Required for Resource Deployment (Optional)
In this practice, some resources and data sources use input variables to assign values to configuration content. These input parameters need to be manually entered during subsequent deployments. At the same time, Terraform provides a method to preset these configurations through tfvars files, which can avoid repeated input during each execution.
Create a terraform.tfvars file in the working directory with the following example content:
Usage:
Save the above content as
terraform.tfvarsfile in the working directory (this file name allows users to automatically import the content of thistfvarsfile when executing terraform commands; for other names,.autoneeds to be added before tfvars, such asvariables.auto.tfvars)Modify parameter values as needed
When executing
terraform planorterraform apply, Terraform will automatically read the variable values from this file
In addition to using terraform.tfvars file, variable values can also be set in the following ways:
Command line parameters:
terraform apply -var="app_server_group_name=my-server-group" -var="app_server_group_flavor_id=workspace.appstream.general.xlarge.4"Environment variables:
export TF_VAR_app_server_group_name=my-server-groupCustom named variable files:
terraform apply -var-file="custom.tfvars"
Note: If the same variable is set in multiple ways, Terraform will use the variable value according to the following priority: command line parameters > variable files > environment variables > default values.
5. Initialize and Apply Terraform Configuration
After completing the above script configuration, execute the following steps to create resources:
Run
terraform initto initialize the environmentRun
terraform planto view the resource creation planAfter confirming the resource plan is correct, run
terraform applyto start creating cloud application server groupsRun
terraform showto view the created cloud application server group
Reference Information
Last updated