日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

alicloud_log_resource

更新時間:

Log resource is a meta store service provided by log service, resource can be used to define meta store's table structure.

For information about SLS Resource and how to use it, see Resource management

-> NOTE: Available since v1.162.0. log resource region should be set a main region: cn-heyuan.

Example Usage

Basic Usage


provider "alicloud" {
  region = "cn-heyuan"
}

resource "alicloud_log_resource" "example" {
  type        = "userdefine"
  name        = "user.tf.resource"
  description = "user tf resource desc"
  ext_info    = "{}"
  schema      = <<EOF
    {
      "schema": [
        {
          "column": "col1",
          "desc": "col1   desc",
          "ext_info": {
          },
          "required": true,
          "type": "string"
        },
        {
          "column": "col2",
          "desc": "col2   desc",
          "ext_info": "optional",
          "required": true,
          "type": "string"
        }
      ]
    }
  EOF
}

Argument Reference

The following arguments are supported:

  • name - (Required, ForceNew) The meta store's name, can be used as table name.
  • type - (Required) The meta store's type, userdefine e.g.
  • description - (Optional) The meta store's description.
  • schema - (Required) The meta store's schema info, which is json string format, used to define table's fields.
  • ext_info - (Optional) The ext info of meta store.

Attributes Reference

The following attributes are exported:

  • id - The ID of the resource. It formats of <name>.

Import

Log resource can be imported using the id, e.g.

$ terraform import alicloud_log_resource_record.example <id>