Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 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
    • Viewing operations with resources
  • Yandex Container Solution
  • Access management
  • Terraform reference
  • Monitoring metrics
  • 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
Updated at May 5, 2025

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:

CLI
API

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

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

  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.

See alsoSee also

  • 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
© 2025 Direct Cursus Technology L.L.C.