Partager via


Microsoft.Compute hostGroups 2019-07-01

Bicep resource definition

The hostGroups resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Compute/hostGroups resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Compute/hostGroups@2019-07-01' = {
  location: 'string'
  name: 'string'
  properties: {
    platformFaultDomainCount: int
  }
  tags: {
    {customized property}: 'string'
  }
  zones: [
    'string'
  ]
}

Property values

DedicatedHostGroupProperties

Name Description Value
platformFaultDomainCount Number of fault domains that the host group can span. int

Constraints:
Min value = 1
Max value = 3 (required)

Microsoft.Compute/hostGroups

Name Description Value
location Resource location string (required)
name The resource name string (required)
properties Dedicated Host Group Properties. DedicatedHostGroupProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
zones Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone. string[]

ResourceTags

Name Description Value

ARM template resource definition

The hostGroups resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Compute/hostGroups resource, add the following JSON to your template.

{
  "type": "Microsoft.Compute/hostGroups",
  "apiVersion": "2019-07-01",
  "name": "string",
  "location": "string",
  "properties": {
    "platformFaultDomainCount": "int"
  },
  "tags": {
    "{customized property}": "string"
  },
  "zones": [ "string" ]
}

Property values

DedicatedHostGroupProperties

Name Description Value
platformFaultDomainCount Number of fault domains that the host group can span. int

Constraints:
Min value = 1
Max value = 3 (required)

Microsoft.Compute/hostGroups

Name Description Value
apiVersion The api version '2019-07-01'
location Resource location string (required)
name The resource name string (required)
properties Dedicated Host Group Properties. DedicatedHostGroupProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Compute/hostGroups'
zones Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone. string[]

ResourceTags

Name Description Value

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Azure Dedicated Hosts

Deploy to Azure
This will deploy an isolated environment using Azure Dedicated Hosts for you to provision VMs.

Terraform (AzAPI provider) resource definition

The hostGroups resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Compute/hostGroups resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Compute/hostGroups@2019-07-01"
  name = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  zones = [
    "string"
  ]
  body = jsonencode({
    properties = {
      platformFaultDomainCount = int
    }
  })
}

Property values

DedicatedHostGroupProperties

Name Description Value
platformFaultDomainCount Number of fault domains that the host group can span. int

Constraints:
Min value = 1
Max value = 3 (required)

Microsoft.Compute/hostGroups

Name Description Value
location Resource location string (required)
name The resource name string (required)
properties Dedicated Host Group Properties. DedicatedHostGroupProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Compute/hostGroups@2019-07-01"
zones Availability Zone to use for this host group. Only single zone is supported. The zone can be assigned only during creation. If not provided, the group supports all zones in the region. If provided, enforces each host in the group to be in the same zone. string[]

ResourceTags

Name Description Value