alicloud_simple_application_server_custom_images
更新时间:
This data source provides the Simple Application Server Custom Images of the current Alibaba Cloud user.
-> NOTE: Available in v1.143.0+.
Example Usage
Basic Usage
data "alicloud_simple_application_server_custom_images" "ids" {
  ids = ["example_id"]
}
output "simple_application_server_custom_image_id_1" {
  value = data.alicloud_simple_application_server_custom_images.ids.images.0.id
}
data "alicloud_simple_application_server_custom_images" "nameRegex" {
  name_regex = "^my-CustomImage"
}
output "simple_application_server_custom_image_id_2" {
  value = data.alicloud_simple_application_server_custom_images.nameRegex.images.0.id
}
Argument Reference
The following arguments are supported:
ids- (Optional, ForceNew, Computed) A list of Custom Image IDs.name_regex- (Optional, ForceNew) A regex string to filter results by Custom Image name.output_file- (Optional) File name where to save data source results (after runningterraform plan).
Argument Reference
The following attributes are exported in addition to the arguments listed above:
names- A list of Custom Image names.images- A list of Simple Application Server Custom Images. Each element contains the following attributes:custom_image_id- The first ID of the resource.custom_image_name- The name of the resource.description- Image description information.id- The ID of the Custom Image.platform- The type of operating system used by the Mirror. Valid values:Linux,Windows.
该文章对您有帮助吗?