本文介紹如何使用Terraform為指定VPC防火墻策略組添加訪問控制策略。
注意事項
Terraform運行環境:阿里云Cloud Shell
Terraform版本:0.12
alicloud版本:1.203.0
resource定義:cloud_firewall_vpc_firewall_control_policy
前提條件
已創建阿里云賬號和訪問密鑰(AccessKey)。具體操作,請參見創建AccessKey。
已經安裝并配置了Terraform。
為指定VPC防火墻策略組添加訪問控制策略
在Terraform執行目錄下的
terraform.tf
文件中,配置如下內容。代碼示例如下:
provider "alicloud" { version = "~> 1.203.0" } resource "alicloud_cloud_firewall_vpc_firewall_control_policy" "default" { order = "1" destination = "192.XX.XX.2/32" application_name = "ANY" description = "Created_by_Terraform" source_type = "net" dest_port = "80/88" acl_action = "accept" lang = "zh" destination_type = "net" source = "192.XX.XX.1/32" dest_port_type = "port" proto = "TCP" release = true member_uid = "141518928482****" vpc_firewall_id = "vfw-d7b8ce273791475b****" }
運行
terraform init
,對環境進行初始化。代碼示例如下:
Initializing the backend... Initializing provider plugins... - Checking for available provider plugins... - Downloading plugin for provider "alicloud" (hashicorp/alicloud) 1.203.0... Warning: registry.terraform.io: For users on Terraform 0.13 or greater, this provider has moved to aliyun/alicloud. Please update your source in required_providers. 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.
運行
terraform apply
。出現如下配置信息后,確認配置信息并輸入yes,開始創建。代碼示例如下:
An execution plan has been generated and is shown below. Resource actions are indicated with the following symbols: + create Terraform will perform the following actions: # alicloud_cloud_firewall_vpc_firewall_control_policy.default will be created + resource "alicloud_cloud_firewall_vpc_firewall_control_policy" "default" { + acl_action = "accept" + acl_uuid = (known after apply) + application_id = (known after apply) + application_name = "ANY" + description = "Created_by_Terraform" + dest_port = "80/88" + dest_port_group_ports = (known after apply) + dest_port_type = "port" + destination = "192.XX.XX.2/32" + destination_group_cidrs = (known after apply) + destination_group_type = (known after apply) + destination_type = "net" + hit_times = (known after apply) + id = (known after apply) + lang = "zh" + member_uid = "141518928482****" + order = 1 + proto = "TCP" + release = true + source = "192.XX.XX.1/32" + source_group_cidrs = (known after apply) + source_group_type = (known after apply) + source_type = "net" + vpc_firewall_id = "vfw-d7b8ce273791475b****" } Plan: 1 to add, 0 to change, 0 to destroy. 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 alicloud_cloud_firewall_vpc_firewall_control_policy.default: Creating... alicloud_cloud_firewall_vpc_firewall_control_policy.default: Creation complete after 2s [id=vfw-d7b8ce273791475b****:ba164e52-acd2-4899-bf72-6816b13a****] Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
創建成功后,可以返回指定的VPC防火墻ID:vfw-d7b8ce273791475b****,添加的訪問控制策略ID為:ba164e52-acd2-4899-bf72-6816b13a****。
查看結果。
運行
terraform show
查看VPC防火墻訪問控制策略詳細信息。# alicloud_cloud_firewall_vpc_firewall_control_policy.default: resource "alicloud_cloud_firewall_vpc_firewall_control_policy" "default" { acl_action = "accept" acl_uuid = "ba164e52-acd2-4899-bf72-6816b13a****" application_id = "0" application_name = "ANY" description = "Created_by_Terraform" dest_port = "80/88" dest_port_group_ports = [] dest_port_type = "port" destination = "192.XX.XX.2/32" destination_group_cidrs = [] destination_type = "net" hit_times = 0 id = "vfw-d7b8ce273791475b****:ba164e52-acd2-4899-bf72-6816b13a****" lang = "zh" member_uid = "1415189284827****" order = 1 proto = "TCP" release = true source = "192.XX.XX..1/32" source_group_cidrs = [] source_type = "net" vpc_firewall_id = "vfw-d7b8ce273791475b****" }
登錄云防火墻控制臺,在訪問控制>VPC邊界頁面,查看VPC邊界防火墻訪問控制策略詳細信息。
文檔內容是否對您有幫助?