avm-res-compute-hostgroup
Azure/avm-res-compute-hostgroup/azurerm
AVM Module for Compute Host groups, also known as Dedicated Host Groups
terraform-azurerm-avm-res-compute-hostgroup This is an AVM module to deploy dedicated host groups in Azure. To use this module in your Terraform configuration, you'll need to provide values for the required variables. Here's a basic example: `` module "azure_computehostgroup" { source = "./path_to_this_module" // ... mandatory variables ... dedicated_host_group_name = "dedicated_host_groupname" resource_group_name = "resource_group_name" location = "location" platform_fault_domain_count = 5 //acceptable values between 1 and 5 // ... other optional variables, see example ... } ` > [!IMPORTANT] > As the overall AVM framework is not GA (generally available) yet - the CI framework and test automation is not fully functional and implemented across all supported languages yet - breaking changes
| Name | Type | Description | Default |
|---|---|---|---|
| location | string | The location where the dedicated host group will be created. | required |
| platform_fault_domain_count | number | The number of fault domains that the host group can span. | required |
| dedicated_host_group_name | string | The name of the dedicated host. | required |
| resource_group_name | string | The resource group where dedicated host group will be deployed. | required |
| dedicated_hosts | map(object({ name | (Optional) A map of the hosts and their specifications in the Dedicated Host Gro | {} |
| enable_telemetry | bool | This variable controls whether or not telemetry is enabled for the module. For m | true |
| zone | string | The Availability Zone for the Dedicated Host Group. | null |
| automatic_placement_enabled | bool | Whether or not automatic placement is enabled for the host group. | true |
| tags | map(string) | (Optional) Tags of the resource | null |
resource — All atrributes of the Dedicated Host groupresource_id — The resource ID of the Dedicated Host Grouphost_ids — A map of the hosts in the Dedicated Host Group to the resource IDsname — The name of the Dedicated Host Group