Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Истории успеха
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • ИИ для бизнеса
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Калькулятор цен
    • Тарифы
    • Промоакции и free tier
    • Правила тарификации
  • Истории успеха
  • Документация
  • Блог
Проект Яндекса
© 2025 ООО «Яндекс.Облако»
Terraform в Yandex Cloud
  • Начало работы
  • Библиотека решений
    • Обзор
    • История изменений (англ.)
          • cloud_desktops_desktop
          • cloud_desktops_desktop_group
          • cloud_desktops_image

В этой статье:

  • Example usage
  • Schema
  • Optional
  • Read-Only
  • Nested Schema for desktop_template
  • Nested Schema for desktop_template.boot_disk
  • Nested Schema for desktop_template.boot_disk.initialize_params
  • Nested Schema for desktop_template.data_disk
  • Nested Schema for desktop_template.data_disk.initialize_params
  • Nested Schema for desktop_template.network_interface
  • Nested Schema for desktop_template.resources
  • Nested Schema for group_config
  • Nested Schema for group_config.members
  1. Справочник Terraform
  2. Ресурсы (англ.)
  3. Cloud Desktops
  4. Data Sources
  5. cloud_desktops_desktop_group

yandex_cloud_desktops_desktop_group (Data Source)

Статья создана
Yandex Cloud
Обновлена 25 ноября 2025 г.
  • Example usage
  • Schema
    • Optional
    • Read-Only
    • Nested Schema for desktop_template
    • Nested Schema for desktop_template.boot_disk
    • Nested Schema for desktop_template.boot_disk.initialize_params
    • Nested Schema for desktop_template.data_disk
    • Nested Schema for desktop_template.data_disk.initialize_params
    • Nested Schema for desktop_template.network_interface
    • Nested Schema for desktop_template.resources
    • Nested Schema for group_config
    • Nested Schema for group_config.members

Manages a Cloud Desktops Desktop Group. For more information see the official documentation

Example usageExample usage

data "yandex_cloud_desktops_desktop_group" "data_desktop_group_by_name_and_folder" {
	name 		= "desktop-group-name"
	folder_id 	= "<your folder id (optional)>"
}

data "yandex_cloud_desktops_desktop_group" "data_desktop_group_by_id" {
	desktop_group_id 	= "<your desktop group id>"
}

SchemaSchema

OptionalOptional

  • desktop_group_id (String) The id of the desktop group.
  • desktop_template (Attributes) The configuration template for the desktop group. (see below for nested schema)
  • folder_id (String) The folder the dekstop group is in.
  • group_config (Attributes) The group configuration. (see below for nested schema)
  • name (String) The name of the desktop group.

Read-OnlyRead-Only

  • description (String) The description of the desktop group.
  • id (String) The resource identifier.
  • labels (Map of String) A set of key/value label pairs which assigned to resource.

Nested Schema for Nested Schema for desktop_template

Optional:

  • boot_disk (Attributes) The boot disk configuration for each desktop in the group. (see below for nested schema)
  • data_disk (Attributes) The data disk configuration for each desktop in the group. (see below for nested schema)
  • network_interface (Attributes) The base network interface configuration for each desktop in the group. (see below for nested schema)
  • resources (Attributes) The base resource configuration for each desktop in the group. (see below for nested schema)

Nested Schema for Nested Schema for desktop_template.boot_disk

Optional:

  • initialize_params (Attributes) General data disk configuration (see below for nested schema)

Nested Schema for Nested Schema for desktop_template.boot_disk.initialize_params

Read-Only:

  • size (Number) The size of disk in gigabytes.
  • type (String) The type of disk. Allowed values: TYPE_UNSPECIFIED, HDD or SDD

Nested Schema for Nested Schema for desktop_template.data_disk

Optional:

  • initialize_params (Attributes) General data disk configuration (see below for nested schema)

Nested Schema for Nested Schema for desktop_template.data_disk.initialize_params

Read-Only:

  • size (Number) The size of disk in gigabytes.
  • type (String) The type of disk. Allowed values: TYPE_UNSPECIFIED, HDD or SDD

Nested Schema for Nested Schema for desktop_template.network_interface

Read-Only:

  • network_id (String) The id of the network desktops from the group would use.
  • subnet_ids (List of String) The ids of the subnet networks desktops from the group would use.

Nested Schema for Nested Schema for desktop_template.resources

Read-Only:

  • core_fraction (Number) The baseline level of CPU performance each desktop in this group would have.
  • cores (Number) The number of cores each desktop in this group would have.
  • memory (Number) The number of gigabytes of RAM each desktop in this group would have.

Nested Schema for Nested Schema for group_config

Read-Only:

  • desktop_type (String) The type of the desktop group. Allowed: DESKTOP_TYPE_UNSPECIFIED, PERSISTENT, NON_PERSISTENT
  • max_desktops_amount (Number) Maximum number of desktops.
  • members (Attributes List) List of members in this desktop group. (see below for nested schema)
  • min_ready_desktops (Number) Minimum number of ready desktops.

Nested Schema for Nested Schema for group_config.members

Read-Only:

  • id (String) The id of the member. More info in the official documentation.
  • type (String) The type of the member. More info in the official documentation.

Была ли статья полезна?

Предыдущая
cloud_desktops_desktop
Следующая
cloud_desktops_image
Проект Яндекса
© 2025 ООО «Яндекс.Облако»