Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.26 KB

File metadata and controls

48 lines (33 loc) · 1.26 KB
page_title subcategory description
anxcloud_disk_types Data Source - terraform-provider-anxcloud
Provides available disk types for a specified location. This information can be used to provision virtual servers using the anxcloud_virtual_server resource.

anxcloud_disk_types (Data Source)

Provides available disk types for a specified location. This information can be used to provision virtual servers using the anxcloud_virtual_server resource.

Example Usage

data "anxcloud_core_location" "anx04" {
  code = "ANX04"
}

data "anxcloud_disk_types" "example" {
  location_id = data.anxcloud_core_location.anx04.id
}

Schema

Required

  • location_id (String) Location identifier.

Read-Only

  • id (String) The ID of this resource.
  • types (List of Object) List of available disk types. (see below for nested schema)

Nested Schema for types

Read-Only:

  • bandwidth (Number) Bandwidth.
  • id (String) Identifier of the API resource.
  • iops (Number) Input/output operations per second.
  • latency (Number) Latency.
  • storage_type (String) Storage type.