文档

创建地址簿

更新时间:

本文介绍如何使用Terraform创建地址簿。

注意事项

前提条件

创建地址簿

  1. 在Terraform执行目录下的terraform.tf文件中,配置如下内容。

    代码示例如下:

    provider "alicloud" {
      version = "~> 1.203.0"
    }
    
    resource "alicloud_cloud_firewall_address_book" "example" {
      description      = "Created_by_terraform"
      group_name       = "IPListExample"
      group_type       = "ip"
      address_list     = ["192.0.2.1/32", "192.0.2.2/32"]
    }

  1. 运行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.

  1. 运行terraform apply出现如下配置信息后,确认配置信息并输入yes,开始创建。

    代码示例如下,创建成功后,可以返回地址簿ID为1d89edf3-5711-41e6-b8dd-0c1ac080****。

    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_address_book.example will be created
      + resource "alicloud_cloud_firewall_address_book" "example" {
          + address_list = [
              + "192.0.2.1/32",
              + "192.0.2.2/32",
            ]
          + description  = "Created_by_terraform"
          + group_name   = "IPListExample"
          + group_type   = "ip"
          + id           = (known after apply)
        }
    
    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_address_book.example: Creating...
    alicloud_cloud_firewall_address_book.example: Creation complete after 2s [id=1d89edf3-5711-41e6-b8dd-0c1ac080****]

  2. 查看结果。

    • 运行terraform show查看地址簿详细信息。

      # alicloud_cloud_firewall_address_book.example:
      resource "alicloud_cloud_firewall_address_book" "example" {
          address_list     = [
              "192.0.2.1/32",
              "192.0.2.2/32",
          ]
          auto_add_tag_ecs = 0
          description      = "Created_by_terraform"
          group_name       = "IPListExample"
          group_type       = "ip"
          id               = "1d89edf3-5711-41e6-b8dd-0c1ac080****"
      }
    • 登录云防火墙控制台,在访问控制>地址簿管理页面,搜索地址簿名称查看地址簿的详细信息。

      image..png

  • 本页导读 (1)
文档反馈