通过Terraform创建云防火墙实例

本文介绍如何使用Terraform创建互联网防火墙实例。

说明

当前示例代码支持一键运行,您可以直接运行代码。一键运行

前提条件

  • 由于阿里云账号(主账号)具有资源的所有权限,一旦发生泄露将面临重大风险。建议您使用RAM用户,并为该RAM用户创建AccessKey,具体操作方式请参见创建RAM用户创建AccessKey

  • 使用以下示例为RAM用户授权,需要为该RAM用户授予以下权限:云防火墙CloudFirewall权限和AliyunBSSFullAccess(管理费用中心BSS)权限。具体操作方式请参见为RAM用户授权

    {
        "Version": "1",
        "Statement": [
            {
                "Effect": "Allow",
                "Action": [
                    "yundun-cloudfirewall:CreateFirewall",
                    "yundun-cloudfirewall:DescribeFirewalls",
                    "yundun-cloudfirewall:DeleteFirewall"
                ],
                "Resource": "*"
            },
            {
                "Effect": "Allow",
                "Action": [
                    "bssapi:*",
                    "bss:*"
                ],
                "Resource": "*"
            }
        ]
    }
  • 准备Terraform运行环境,您可以选择以下任一方式来使用Terraform。

    Explorer中使用Terraform:阿里云提供了Terraform的在线运行环境,您无需安装Terraform,登录后即可在线使用和体验Terraform。适用于零成本、快速、便捷地体验和调试Terraform的场景。

    Cloud Shell:阿里云Cloud Shell中预装了Terraform的组件,并已配置好身份凭证,您可直接在Cloud Shell中运行Terraform的命令。适用于低成本、快速、便捷地访问和使用Terraform的场景。

    在本地安装和配置Terraform:适用于网络连接较差或需要自定义开发环境的场景。

    重要

    请确保Terraform版本不低于v0.12.28。如需检查现有版本,请运行terraform --version命令。

说明

本教程示例包含的部分资源会产生一定费用,请在不需要时及时进行退订。

使用的资源

alicloud_cloud_firewall_instance:创建云防火墙实例。

创建防火墙实例

本示例将创建云防火墙实例。

  1. 创建一个工作目录,并且在工作目录中创建以下名为main.tf的配置文件。main.tfTerraform主文件,定义了将要部署的资源。

    resource "alicloud_cloud_firewall_instance" "example" {
      # 资源的支付类型。有效值:Subscription(订阅),PayAsYouGo(按需计费)。
      payment_type    = "Subscription"
      # 当前版本。premium_version(高级版)、enterprise_version(企业版)、ultimate_version(终极版)。
      spec            = "premium_version"
      # 可保护的公网 IP 数量。有效值:20 到 4000。
      ip_number       = 20
      # 公共网络处理能力。有效值:10 到 15000。单位:Mbps。
      band_width      = 10
      # 是否使用日志审计。有效值:true,false。
      cfw_log         = false
      # 日志存储容量。当 cfw_log = false 时将被忽略。
      cfw_log_storage = 1000
      # 属性 cfw_service 不再支持更长的设置,已于 v1.209.1 版本中移除。
      # cfw_service     = false
      # 预付费期。有效值:1, 3, 6, 12, 24, 36。
      period          = 1
    }
  2. 执行以下命令,初始化Terraform运行环境。

    terraform init

    返回如下信息,表示Terraform初始化成功。

    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.
  3. 创建执行计划,并预览变更。

    terraform plan
  4. 执行以下命令,创建云防火墙实例。

    terraform apply

    在执行过程中,根据提示输入yes并按下Enter键,等待命令执行完成,若出现以下信息,则表示创建云防火墙实例成功。

    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_instance.example will be created
      + resource "alicloud_cloud_firewall_instance" "example" {
          + band_width            = 10
          + cfw_log               = false
          + cfw_log_storage       = 1000
          + cfw_service           = false
          + create_time           = (known after apply)
          + end_time              = (known after apply)
          + id                    = (known after apply)
          + ip_number             = 20
          + payment_type          = "Subscription"
          + period                = 6
          + release_time          = (known after apply)
          + renewal_duration_unit = (known after apply)
          + renewal_status        = (known after apply)
          + spec                  = "premium_version"
          + status                = (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_instance.example: Creating...
    alicloud_cloud_firewall_instance.example: Creation complete after 4s [id=vipcloudfw-cn-x0r36mo****]
    
    Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
  5. 验证结果

    执行terraform show命令

    您可以使用以下命令查询Terraform已创建的资源详细信息。

    terraform show

    image

    登录云防火墙控制台

    登录云防火墙控制台,在总览页面,单击升级查看云防火墙实例的当前配置。image

清理资源

重要

目前无法通过 Terraform 退订预付费的防火墙实例,执行 terraform destroy 后会将资源从状态文件中移除,请及时到控制台上进行退订!

完整示例

说明

当前示例代码支持一键运行,您可以直接运行代码。一键运行

示例代码

resource "alicloud_cloud_firewall_instance" "example" {
  # 资源的支付类型。有效值:Subscription(订阅),PayAsYouGo(按需计费)。
  payment_type    = "Subscription"
  # 当前版本。premium_version(高级版)、enterprise_version(企业版)、ultimate_version(终极版)。
  spec            = "premium_version"
  # 可保护的公网 IP 数量。有效值:20 到 4000。
  ip_number       = 20
  # 公共网络处理能力。有效值:10 到 15000。单位:Mbps。
  band_width      = 10
  # 是否使用日志审计。有效值:true,false。
  cfw_log         = false
  # 日志存储容量。当 cfw_log = false 时将被忽略。
  cfw_log_storage = 1000
  # 属性 cfw_service 不再支持更长的设置,已于 v1.209.1 版本中移除。
  # cfw_service     = false
  # 预付费期。有效值:1, 3, 6, 12, 24, 36。
  period          = 1
}