Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
    • Cloud Interconnect
    • Cloud Backup
    • Cloud Registry
    • Yandex AI Studio
    • Compute Cloud
    • Object Storage
    • Managed Service for Kubernetes®
    • Yandex BareMetal
    • Smart Web Security
    • Security Deck
    • Managed Service for PostgreSQL
    • Managed Service for ClickHouse®
    • Monium
    • Cloud CDN
    • Network Load Balancer
    • Virtual Private Cloud
    • Cloud DNS
    • Application Load Balancer
    • Yandex Cloud Video
    • Stackland
    • Yandex Cloud Router
    • Yandex Managed Service for Trino
    • Managed Service for MySQL®
    • Managed Service for Valkey™
    • Managed Service for Apache Spark™
    • Yandex StoreDoc
    • Managed Service for OpenSearch
    • Managed Service for Apache Kafka®
    • Data Transfer
    • Yandex MPP Analytics Engine for PostgreSQL
    • Yandex Managed Service for Apache Airflow®
    • Data Processing
    • Yandex MetaData Hub
    • Managed Service for YDB
    • Managed Service for Sharded PostgreSQL
    • Managed Service for YTsaurus
    • Yandex WebSQL
    • DataLens
    • Yandex Search API
    • SpeechSense
    • SpeechKit
    • DataSphere
    • Vision OCR
    • Translate
    • Yandex Identity Hub
    • Key Management Service
    • Certificate Manager
    • Yandex Lockbox
    • Audit Trails
    • SmartCaptcha
    • Cloud Desktop
    • SourceCraft Code Assistant
    • Container Registry
    • Managed Service for GitLab
    • Managed Service for Prometheus®
    • Cloud Functions
    • API Gateway
    • Yandex Cloud Postbox
    • Message Queue
    • Serverless Integrations
    • IoT Core
    • Data Streams
    • Serverless Containers
    • Cloud Notification Service
    • Yandex Query
    • Identity and Access Management
    • Yandex Cloud Console
    • Resource Manager
    • Yandex Cloud Billing
    • Yandex Cloud Quota Manager
    • Cloud Apps
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Compute Cloud
    • All guides
      • Creating a group of dedicated hosts
      • Creating a VM in a group of dedicated hosts
      • Creating a VM on a dedicated host
      • Configuring access permissions for a dedicated host group
    • Enabling a software-accelerated network
    • Viewing operations on service resources
    • Viewing metrics in Monitoring
    • NVIDIA driver update guide
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
  • Metrics Monitoring
  • Audit Trails events
  • Release notes
  1. Step-by-step guides
  2. Dedicated hosts
  3. Creating a group of dedicated hosts

Creating a group of dedicated hosts

Written by
Yandex Cloud
Improved by
Danila N.
Updated at July 9, 2026
View in Markdown

You can create a group of dedicated hosts solely for your VMs in Yandex Cloud.

By default, a cloud has a zero quota for using dedicated hosts. To change the quota, contact support.

To create a group of dedicated hosts:

Management console
CLI
API
  1. In the management console, select the folder you want to create your dedicated host group in.

  2. In the list of services, select Compute Cloud.

  3. In the left-hand panel, click and select Dedicated host groups.

  4. At the top right, click Create host group.

  5. Enter the name and description of the dedicated host group. The naming requirements are as follows:

    • Length: between 3 and 63 characters.
    • It can only contain lowercase Latin letters, numbers, and hyphens.
    • It must start with a letter and cannot end with a hyphen.
  6. Optionally, add a label to the dedicated host group.

  7. Select an availability zone for the dedicated host group.

  8. Select the host type.

  9. Specify the number of dedicated hosts in the group.

  10. Click Create.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

The folder used by default is the one specified when creating the CLI profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also specify a different folder for any command using --folder-name or --folder-id. If you access a resource by its name, the search will be limited to the default folder. If you access a resource by its ID, the search will be global, i.e., through all folders based on access permissions.

  1. View a list of available dedicated host types:

    yc compute host-type list
    

    Result:

    +------------------------------+-------+--------------+-------+---------------+
    |              ID              | CORES |    MEMORY    | DISKS |   DISK SIZE   |
    +------------------------------+-------+--------------+-------+---------------+
    ...
    | intel-6338-c108-m704-n3200x6 |   108 | 755914244096 |     6 | 3198924357632 |
    +------------------------------+-------+--------------+-------+---------------+
    
  2. Create a group of dedicated hosts of the selected type. A group may contain one or more hosts.

    yc compute host-group create \
      --fixed-size <number_of_dedicated_hosts_in_group> \
      --type <dedicated_host_type> \
      --zone <availability_zone>
    

    Where:

    • --fixed-size: Number of dedicated hosts in the group.
    • --type: Type of dedicated hosts.
    • --zone: Availability zone to place your group in.

    Result:

    done (6s)
    id: abcdefg1hi23********
    folder_id: m4n56op78mev********
    created_at: "2020-10-13T07:36:49Z"
    zone_id: ru-central1-a
    status: READY
    type_id: intel-6230-c66-m454
    maintenance_policy: RESTART
    scale_policy:
      fixed_scale:
        size: "2"
    
  1. Select the host type using the list REST API method for the HostType resource or the HostTypeService/List gRPC API call.
  2. Create a group of dedicated hosts using the create REST API method for the HostGroup resource or the HostGroupService/Create gRPC API call.

Useful linksUseful links

  • Creating a VM in a group of dedicated hosts
  • Creating a VM on a dedicated host

Was the article helpful?

Previous
Deleting an instance group
Next
Creating a VM in a group of dedicated hosts
© 2026 Direct Cursus Technology L.L.C.