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
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
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 service resource operations
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • 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 26, 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.

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command 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
Yandex project
© 2025 Yandex.Cloud LLC