Deploy Network
Application Scenario
Cloud Container Instance (CCI) network is a network configuration function provided by the CCI service, used to provide network connectivity for container applications. By creating a CCI network, you can connect container applications to VPC networks, achieving interconnection between containers and other cloud resources. Automating CCI network creation through Terraform can ensure standardized and consistent network configuration, improving operational efficiency. This best practice will introduce how to use Terraform to automatically create a CCI network, including the creation of VPC, subnet, security group, and namespace.
Related Resources/Data Sources
This best practice involves the following main resources:
Resources
Resource/Data Source Dependencies
huaweicloud_networking_secgroup
└── huaweicloud_cciv2_network
huaweicloud_vpc
└── huaweicloud_vpc_subnet
└── huaweicloud_cciv2_network
huaweicloud_cciv2_namespace
└── huaweicloud_cciv2_networkOperation 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. Create Security Group Resource
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a security group resource:
Parameter Description:
name: The security group name, assigned by referencing the input variable security_group_name, default value is "tf-test-secgroup"
delete_default_rules: Whether to delete default rules, set to true
3. Create VPC Resource
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a VPC resource:
Parameter Description:
name: The VPC name, assigned by referencing the input variable vpc_name, default value is "tf-test-vpc"
cidr: The VPC CIDR block, assigned by referencing the input variable vpc_cidr, default value is "192.168.0.0/16"
4. Create VPC Subnet Resource
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a VPC subnet resource:
Parameter Description:
vpc_id: The ID of the VPC to which the subnet belongs, referencing the ID of the previously created VPC resource (huaweicloud_vpc.test)
name: The subnet name, assigned by referencing the input variable subnet_name, default value is "tf-test-subnet"
cidr: The subnet CIDR block, assigned by referencing the input variable subnet_cidr, default value is "192.168.0.0/24"
gateway_ip: The subnet gateway IP, assigned by referencing the input variable subnet_gateway_ip, default value is "192.168.0.1"
5. Create CCI Namespace Resource
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a CCI namespace resource:
Parameter Description:
name: The namespace name, assigned by referencing the input variable namespace_name
6. Create CCI Network Resource
Add the following script to the TF file (e.g., main.tf) to instruct Terraform to create a CCI network resource:
Parameter Description:
depends_on: Explicit dependency relationship, ensuring the namespace resource is created before the network resource
namespace: The namespace name, referencing the name of the previously created CCI namespace resource (huaweicloud_cciv2_namespace.test)
name: The network name, assigned by referencing the input variable network_name
annotations.yangtse.io/project-id: The project ID annotation, automatically inherited from the namespace annotations
annotations.yangtse.io/domain-id: The domain ID annotation, automatically inherited from the namespace annotations
annotations.yangtse.io/warm-pool-size: The warm pool size annotation, assigned by referencing the input variable warm_pool_size, default value is "10"
annotations.yangtse.io/warm-pool-recycle-interval: The warm pool recycle interval annotation (in hours), assigned by referencing the input variable warm_pool_recycle_interval, default value is "2"
subnets.subnet_id: The subnet ID, referencing the IPv4 subnet ID of the previously created VPC subnet resource (huaweicloud_vpc_subnet.test)
security_group_ids: The security group ID list, referencing the ID of the previously created security group resource (huaweicloud_networking_secgroup.test)
7. Preset Input Parameters Required for Resource Deployment (Optional)
In this practice, some resources use input variables to assign configuration content. These input parameters need to be manually entered during subsequent deployment. 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 a
terraform.tfvarsfile in the working directory (this filename allows users to automatically import the content of thistfvarsfile when executing terraform commands. For other naming, you need to add.autobefore tfvars, such asvariables.auto.tfvars)Modify parameter values according to actual needs
When executing
terraform planorterraform apply, Terraform will automatically read the variable values in this file
In addition to using the terraform.tfvars file, you can also set variable values in the following ways:
Command line parameters:
terraform apply -var="network_name=test-network" -var="namespace_name=test-namespace"Environment variables:
export TF_VAR_network_name=test-networkandexport TF_VAR_namespace_name=test-namespaceCustom named variable file:
terraform apply -var-file="custom.tfvars"
Note: If the same variable is set through multiple methods, Terraform will use variable values according to the following priority: command line parameters > variable file > environment variables > default values.
8. Initialize and Apply Terraform Configuration
After completing the above script configuration, execute the following steps to create a CCI network:
Run
terraform initto initialize the environmentRun
terraform planto view the resource creation planAfter confirming that the resource plan is correct, run
terraform applyto start creating the CCI networkRun
terraform showto view the details of the created CCI network
Note: The network must be associated with at least one subnet. The warm pool configuration helps reduce pod startup time by pre-allocating resources. Network names must be unique within the namespace. The annotations yangtse.io/project-id and yangtse.io/domain-id are automatically inherited from the namespace.
Reference Information
Last updated