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

alicloud_ots_instances

更新時間:

This data source provides the ots instances of the current Alibaba Cloud user.

-> NOTE: Available since v1.40.0.

Example Usage

data "alicloud_ots_instances" "instances_ds" {
  output_file = "instances.txt"
}

output "first_instance_id" {
  value = "${data.alicloud_ots_instances.instances_ds.instances.0.id}"
}

Argument Reference

The following arguments are supported:

  • ids - (Optional, ForceNew) A list of instance IDs.
  • name_regex - (Optional, ForceNew) A regex string to filter results by instance name.
  • tags - (Optional) A map of tags assigned to the instance. It must be in the format:
    data "alicloud_ots_instances" "instances_ds" {
      tags = {
        tagKey1 = "tagValue1",
        tagKey2 = "tagValue2"
      }
    }
    
  • output_file - (Optional) File name where to save data source results (after running terraform plan).

Attributes Reference

The following attributes are exported in addition to the arguments listed above:

  • ids - A list of instance IDs.
  • names - A list of instance names.
  • instances - A list of instances. Each element contains the following attributes:
    • id - ID of the instance.
    • name - Instance name.
    • status - Instance status. Possible values: Running, Disabled, Deleting.
    • cluster_type - The cluster type of the instance. Possible values: SSD, HYBRID.
    • create_time - The create time of the instance.
    • user_id - The user id of the instance.
    • resource_group_id - (Available since v1.221.0) The resource group the instance belongs to.
    • network_type_acl - (Available since v1.221.0) The set of network types that are allowed access. Possible values: CLASSIC, VPC, INTERNET.
    • network_source_acl - (Available since v1.221.0) The set of request sources that are allowed access. Possible values: TRUST_PROXY.
    • network - (Removed since v1.221.0) The network type of the instance. Possible values: NORMAL, VPC, VPC_CONSOLE.
    • policy - (Available since v1.221.0) instance policy, json string.
    • policy_version - (Available since v1.221.0) instance policy version.
    • description - The description of the instance.
    • table_quota - (Available since v1.221.0) The instance quota which indicating the maximum number of tables.
    • entity_quota - (Removed since v1.221.0) The instance quota which indicating the maximum number of tables.
    • tags - The tags of the instance.